From a5575408bfa527d0881674fbbdaa1e628b84e2c0 Mon Sep 17 00:00:00 2001 From: Walter Bender Date: Mon, 14 Oct 2013 18:48:10 +0000 Subject: sync with 192 --- diff --git a/TurtleArt/tacanvas.py b/TurtleArt/tacanvas.py index 7067c54..89b8ed1 100644 --- a/TurtleArt/tacanvas.py +++ b/TurtleArt/tacanvas.py @@ -387,9 +387,6 @@ class TurtleGraphics: closest_color = i return closest_color - def get_rgb(self): - return self._fgrgb - def get_pixel(self, x, y): ''' Read the pixel at x, y ''' if self.turtle_window.interactive_mode: diff --git a/TurtleArt/tawindow.py b/TurtleArt/tawindow.py index 73ce930..a03240b 100644 --- a/TurtleArt/tawindow.py +++ b/TurtleArt/tawindow.py @@ -498,14 +498,15 @@ class TurtleArtWindow(): if not self.activity._unfullscreen_button.props.visible: self.activity._unfullscreen_button.show() # Reset the timer - if self.activity._unfullscreen_button_timeout_id is not None: - gobject.source_remove( - self.activity._unfullscreen_button_timeout_id) - self.activity._unfullscreen_button_timeout_id = None + if hasattr(self.activity, '_unfullscreen_button_timeout_id'): + if self.activity._unfullscreen_button_timeout_id is not None: + gobject.source_remove( + self.activity._unfullscreen_button_timeout_id) + self.activity._unfullscreen_button_timeout_id = None - self.activity._unfullscreen_button_timeout_id = \ - gobject.timeout_add_seconds(_UNFULLSCREEN_VISIBILITY_TIMEOUT, - self.__unfullscreen_button_timeout_cb) + self.activity._unfullscreen_button_timeout_id = \ + gobject.timeout_add_seconds(_UNFULLSCREEN_VISIBILITY_TIMEOUT, + self.__unfullscreen_button_timeout_cb) def __unfullscreen_button_timeout_cb(self): self.activity._unfullscreen_button.hide() @@ -650,7 +651,8 @@ class TurtleArtWindow(): if event is None: return - self.activity.check_buttons_for_fit() + if self.running_sugar: + self.activity.check_buttons_for_fit() # If there are any constant blocks on the canvas, relabel them for blk in self.just_blocks(): @@ -4367,6 +4369,8 @@ before making changes to your program')) self.status_spr.set_shape(self.status_shapes[shp]) self.status_spr.set_label_attributes(12.0, rescale=False) if shp == 'status': + if label in ['True', 'False']: + label = _(label) self.status_spr.set_label('"%s"' % (str(label))) else: self.status_spr.set_label(str(label)) diff --git a/TurtleArtActivity.py b/TurtleArtActivity.py index 7019a2b..3b83236 100644 --- a/TurtleArtActivity.py +++ b/TurtleArtActivity.py @@ -170,30 +170,23 @@ class TurtleArtActivity(activity.Activity): # scrolling window self._setup_palette_toolbar() - if self.keep_button in self._toolbox.toolbar: + if self.samples_button in self._toolbox.toolbar: self._toolbox.toolbar.remove(self.extras_separator) - self._toolbox.toolbar.remove(self.keep_button) self._toolbox.toolbar.remove(self.samples_button) self._toolbox.toolbar.remove(self.stop_separator) self._toolbox.toolbar.remove(self.stop_button) self._view_toolbar.remove(self._coordinates_toolitem) if gtk.gdk.screen_width() / 14 < style.GRID_CELL_SIZE: - self.keep_button2.show() - self.keep_label2.show() self.samples_button2.show() self.samples_label2.show() self._toolbox.toolbar.insert(self.stop_button, -1) else: - self.keep_button2.hide() - self.keep_label2.hide() self.samples_button2.hide() self.samples_label2.hide() self._toolbox.toolbar.insert(self.extras_separator, -1) self.extras_separator.props.draw = True self.extras_separator.show() - self._toolbox.toolbar.insert(self.keep_button, -1) - self.keep_button.show() self._toolbox.toolbar.insert(self.samples_button, -1) self.samples_button.show() self._toolbox.toolbar.insert(self.stop_separator, -1) @@ -753,10 +746,6 @@ class TurtleArtActivity(activity.Activity): self.extras_separator = self._add_separator( self._toolbox.toolbar, expand=False, visible=True) - self.keep_button = self._add_button( - 'filesaveoff', _('Save snapshot'), self.do_keep_cb, - self._toolbox.toolbar) - self.samples_button = self._add_button( 'ta-open', _('Load example'), self.do_samples_cb, self._toolbox.toolbar) @@ -796,7 +785,6 @@ class TurtleArtActivity(activity.Activity): add_paragraph(help_box, _('Step'), icon='run-slowoff') add_paragraph(help_box, _('Stop turtle'), icon='stopitoff') add_paragraph(help_box, _('Show blocks'), icon='hideshowoff') - add_paragraph(help_box, _('Save snapshot'), icon='filesaveoff') add_paragraph(help_box, _('Load example'), icon='ta-open') add_paragraph(help_box, _('Help'), icon='help-toolbar') add_paragraph(help_box, _('Stop'), icon='activity-stop') @@ -821,6 +809,7 @@ class TurtleArtActivity(activity.Activity): add_section(help_box, _('Save/Load'), icon='turtleoff') add_paragraph(help_box, _('Save as image'), icon='image-saveoff') add_paragraph(help_box, _('Save as Logo'), icon='logo-saveoff') + add_paragraph(help_box, _('Save snapshot'), icon='filesaveoff') add_paragraph(help_box, _('Load project'), icon='load-from-journal') home = os.environ['HOME'] if activity.get_bundle_path()[0:len(home)] == home: @@ -1005,12 +994,12 @@ class TurtleArtActivity(activity.Activity): self.save_as_logo, label = self._add_button_and_label( 'logo-saveoff', _('Save as Logo'), self.do_save_as_logo_cb, None, button_box) - - # When screen is in portrait mode, the buttons don't fit - # on the main toolbar, so put them here. self.keep_button2, self.keep_label2 = self._add_button_and_label( 'filesaveoff', _('Save snapshot'), self.do_keep_cb, None, button_box) + + # When screen is in portrait mode, the buttons don't fit + # on the main toolbar, so put them here. self.samples_button2, self.samples_label2 = \ self._add_button_and_label('ta-open', _('Load example'), diff --git a/plugins/turtle_blocks_extras/turtle_blocks_extras.py b/plugins/turtle_blocks_extras/turtle_blocks_extras.py index 1f910fd..3cb4fb9 100644 --- a/plugins/turtle_blocks_extras/turtle_blocks_extras.py +++ b/plugins/turtle_blocks_extras/turtle_blocks_extras.py @@ -337,6 +337,7 @@ pressed')) lambda self: primitive_dictionary['mousebutton2']()) + primitive_dictionary['mousex'] = self._prim_mouse_x palette.add_block('mousex', style='box-style', label=_('mouse x'), @@ -345,8 +346,9 @@ pressed')) help_string=_('returns mouse x coordinate')) self.tw.lc.def_prim('mousex', 0, lambda self: - self.tw.mouse_x - (self.tw.canvas.width / 2)) + primitive_dictionary['mousex']()) + primitive_dictionary['mousey'] = self._prim_mouse_y palette.add_block('mousey', style='box-style', label=_('mouse y'), @@ -355,7 +357,7 @@ pressed')) help_string=_('returns mouse y coordinate')) self.tw.lc.def_prim('mousey', 0, lambda self: - (self.tw.canvas.height / 2) - self.tw.mouse_y) + primitive_dictionary['mousey']()) primitive_dictionary['kbinput'] = self._prim_kbinput palette.add_block('kbinput', @@ -367,6 +369,7 @@ stored in keyboard block)')) self.tw.lc.def_prim('kbinput', 0, lambda self: primitive_dictionary['kbinput']()) + primitive_dictionary['keyboard'] = self._prim_keyboard palette.add_block('keyboard', style='box-style', label=_('keyboard'), @@ -375,32 +378,8 @@ stored in keyboard block)')) logo_command='make "keyboard readchar', help_string=_('holds results of query-keyboard \ block as ASCII')) - self.tw.lc.def_prim('keyboard', 0, lambda self: self.tw.lc.keyboard) - - ''' - palette.add_block('keyboard_chr', - style='box-style', - label='chr(%s)' % (_('keyboard')), - prim_name='keyboard_chr', - value_block=True, - logo_command='make "keyboard readchar', - help_string=_('holds results of query-keyboard \ -block as character')) - self.tw.lc.def_prim('keyboard_chr', 0, - lambda self: chr(self.tw.lc.keyboard)) - - primitive_dictionary['keyboardnum'] = self._prim_keyboard_num - palette.add_block('keyboard_num', - style='box-style', - label='num(%s)' % (_('keyboard')), - prim_name='keyboard_num', - value_block=True, - logo_command='make "keyboard readchar', - help_string=_('holds results of query-keyboard \ -block as number')) - self.tw.lc.def_prim('keyboard_num', 0, - lambda self: primitive_dictionary['keyboardnum']()) - ''' + self.tw.lc.def_prim('keyboard', 0, + lambda self: primitive_dictionary['keyboard']()) primitive_dictionary['readpixel'] = self._prim_readpixel palette.add_block('readpixel', @@ -1021,20 +1000,93 @@ Journal objects')) """ Empty FILO """ self.tw.lc.heap = [] + def _prim_keyboard(self): + """ Return last character typed """ + return self.tw.lc.keyboard + def _prim_kbinput(self): """ Query keyboard """ + DICT = { + 'Left': 1, + 'KP_Left': 1, + 'Up': 2, + 'KP_Up': 2, + 'Right': 3, + 'KP_Right': 3, + 'Down': 4, + 'KP_Down': 4, + 'BackSpace': 8, + 'Tab': 9, + 'Return': 13, + 'Escape': 27, + 'space': 32, + ' ': 32, + 'exclam': 33, + 'quotedbl': 34, + 'numbersign': 35, + 'dollar': 36, + 'percent': 37, + 'ampersand': 38, + 'apostrophe': 39, + 'parenleft': 40, + 'parenright': 41, + 'asterisk': 42, + 'plus': 43, + 'comma': 44, + 'minus': 45, + 'period': 46, + 'slash': 47, + 'colon': 58, + 'semicolon': 59, + 'less': 60, + 'equal': 61, + 'greater': 62, + 'question': 63, + 'at': 64, + 'underscore': 95, + 'bracketleft': 91, + 'backslash': 92, + 'bracketright': 93, + 'asciicircum': 94, + 'grave': 96, + 'braceleft': 123, + 'bar': 124, + 'braceright': 125, + 'asciitilde': 126, + 'Delete': 127, + } + REVERSE_DICT = { + 1: _('left'), + 2: _('up'), + 3: _('right'), + 4: _('down'), + 8: _('backspace'), + 9: _('tab'), + # TRANS: enter is the name of the enter (or return) key + 13: _('enter'), + 27: 'esc', + # TRANS: space is the name of the space key + 32: _('space'), + 127: _('delete') + } + if len(self.tw.keypress) == 1: self.tw.lc.keyboard = ord(self.tw.keypress[0]) + elif self.tw.keypress in DICT: + self.tw.lc.keyboard = DICT[self.tw.keypress] else: - try: - self.tw.lc.keyboard = { - 'Escape': 27, 'space': 32, ' ': 32, - 'Return': 13, 'KP_Up': 2, 'KP_Down': 4, 'KP_Left': 1, - 'KP_Right': 3}[self.tw.keypress] - except KeyError: - self.tw.lc.keyboard = 0 + self.tw.lc.keyboard = 0 if self.tw.lc.update_values: - self.tw.lc.update_label_value('keyboard', self.tw.lc.keyboard) + if self.tw.keypress in DICT: + if DICT[self.tw.keypress] in REVERSE_DICT: + self.tw.lc.update_label_value( + 'keyboard', REVERSE_DICT[DICT[self.tw.keypress]]) + else: + self.tw.lc.update_label_value('keyboard', + chr(DICT[self.tw.keypress])) + elif self.tw.lc.keyboard > 0: + self.tw.lc.update_label_value('keyboard', + chr(self.tw.lc.keyboard)) self.tw.keypress = '' def _prim_list(self, blklist): @@ -1339,6 +1391,20 @@ Journal objects')) csd.write("\n") csd.close() + def _prim_mouse_x(self): + """ Return mouse x coordinate """ + mousex = int(self.tw.mouse_x - (self.tw.canvas.width / 2)) + if self.tw.lc.update_values: + self.tw.lc.update_label_value('mousex', mousex) + return mousex + + def _prim_mouse_y(self): + """ Return mouse y coordinate """ + mousey = int((self.tw.canvas.height / 2) - self.tw.mouse_y) + if self.tw.lc.update_values: + self.tw.lc.update_label_value('mousey', mousey) + return mousey + def _prim_mouse_button(self): """ Return 1 if mouse button is pressed """ if self.tw.mouse_flag == 1: diff --git a/po/da.po b/po/da.po index fbcf920..a2e46ad 100644 --- a/po/da.po +++ b/po/da.po @@ -18,8 +18,8 @@ msgstr "" "#-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-09-14 00:32-0400\n" -"PO-Revision-Date: 2013-09-16 18:33+0200\n" +"POT-Creation-Date: 2013-10-10 00:32-0400\n" +"PO-Revision-Date: 2013-10-12 11:53+0200\n" "Last-Translator: Aputsiaq Niels \n" "Language-Team: LANGUAGE \n" "Language: da\n" @@ -31,8 +31,8 @@ msgstr "" "#-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-07-26 00:31-0400\n" -"PO-Revision-Date: 2013-08-05 19:40+0200\n" +"POT-Creation-Date: 2013-10-10 00:30-0400\n" +"PO-Revision-Date: 2013-10-12 11:51+0200\n" "Last-Translator: Aputsiaq Niels \n" "Language-Team: LANGUAGE \n" "Language: da\n" @@ -184,89 +184,93 @@ msgid "custom module %s" msgstr "brugerdefineret modul %s" #: taextras.py:93 +msgid "sensor a" +msgstr "sensor a" + +#: taextras.py:94 +msgid "sensor b" +msgstr "sensor b" + +#: taextras.py:95 +msgid "sensor c" +msgstr "sensor c" + +#: taextras.py:96 +msgid "actuator a" +msgstr "aktuator a" + +#: taextras.py:97 +msgid "actuator b" +msgstr "aktuator b" + +#: taextras.py:98 +msgid "actuator c" +msgstr "aktuator c" + +#: taextras.py:99 msgid "LED" msgstr "LED" -#: taextras.py:94 +#: taextras.py:100 taextras.py:397 msgid "button" msgstr "knap" -#: taextras.py:95 taextras.py:384 TurtleArt/tabasics.py:327 -#: TurtleArt/tabasics.py:409 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1090 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1095 +#: taextras.py:101 taextras.py:402 TurtleArt/tabasics.py:332 +#: TurtleArt/tabasics.py:414 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1129 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1134 msgid "gray" msgstr "grå" -#: taextras.py:96 taextras.py:382 +#: taextras.py:102 taextras.py:400 msgid "light" msgstr "lys" -#: taextras.py:97 taextras.py:356 +#: taextras.py:103 taextras.py:376 taextras.py:398 msgid "distance" msgstr "distance" -#: taextras.py:98 plugins/audio_sensors/audio_sensors.py:151 +#: taextras.py:104 plugins/audio_sensors/audio_sensors.py:151 #: plugins/audio_sensors/audio_sensors.py:165 #: plugins/audio_sensors/audio_sensors.py:179 #: plugins/audio_sensors/audio_sensors.py:193 msgid "resistance" msgstr "modstand" -#: taextras.py:99 plugins/audio_sensors/audio_sensors.py:157 +#: taextras.py:105 plugins/audio_sensors/audio_sensors.py:157 #: plugins/audio_sensors/audio_sensors.py:171 #: plugins/audio_sensors/audio_sensors.py:185 #: plugins/audio_sensors/audio_sensors.py:199 msgid "voltage" msgstr "elektrisk spænding" -#: taextras.py:100 +#: taextras.py:106 msgid "temperature" msgstr "temperatur" -#: taextras.py:101 -msgid "sensor a" -msgstr "sensor a" - -#: taextras.py:102 -msgid "sensor b" -msgstr "sensor b" - -#: taextras.py:103 -msgid "sensor c" -msgstr "sensor c" - -#: taextras.py:104 -msgid "actuator a" -msgstr "aktuator a" - -#: taextras.py:105 -msgid "actuator b" -msgstr "aktuator b" - -#: taextras.py:106 -msgid "actuator c" -msgstr "aktuator c" - #: taextras.py:107 +msgid "butia" +msgstr "butia" + +#: taextras.py:108 msgid "Butia Robot" msgstr "Butia-robot" -#: taextras.py:108 +#: taextras.py:109 msgid "refresh Butia" msgstr "opfrisk Butia" -#: taextras.py:109 +#: taextras.py:110 msgid "refresh the state of the Butia palette and blocks" msgstr "opfrisk tilstanden for Butia-paletten og blokkene" #. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: This string is shorthand for "battery charge of Butia" -#: taextras.py:111 +#: taextras.py:112 msgid "battery charge Butia" msgstr "Butia batteriopladning" -#: taextras.py:112 +#: taextras.py:113 msgid "" "returns the battery charge in volts. If no motors present, it returns 255" msgstr "" @@ -275,256 +279,285 @@ msgstr "" #. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: This string is shorthand for "speed of Butia" -#: taextras.py:114 +#: taextras.py:115 msgid "speed Butia" msgstr "Butia hastighed" -#: taextras.py:115 +#: taextras.py:116 msgid "set the speed of the Butia motors" msgstr "angiv hastigheden for Butia-motorerne" -#: taextras.py:116 +#: taextras.py:117 msgid "move Butia" msgstr "flyt Butia" -#: taextras.py:117 TurtleArt/tabasics.py:169 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856 +#: taextras.py:118 TurtleArt/tabasics.py:171 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 msgid "left" msgstr "venstre" -#: taextras.py:118 TurtleArt/tabasics.py:181 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:880 +#: taextras.py:119 TurtleArt/tabasics.py:183 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:918 msgid "right" msgstr "højre" -#: taextras.py:119 +#: taextras.py:120 msgid "moves the Butia motors at the specified speed" msgstr "flytter Butia-motorerne med den angivne hastighed" -#: taextras.py:120 +#: taextras.py:121 msgid "stop Butia" msgstr "stop Butia" -#: taextras.py:121 +#: taextras.py:122 msgid "stop the Butia robot" msgstr "stop Butia-robotten" #. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: This string is shorthand for "move Butia forward" -#: taextras.py:123 +#: taextras.py:124 msgid "forward Butia" msgstr "ryk Butia frem" -#: taextras.py:124 +#: taextras.py:125 msgid "move the Butia robot forward" msgstr "flyt Butia-robotten fremad" #. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: This string is shorthand for "turn Butia left" -#: taextras.py:126 +#: taextras.py:127 msgid "left Butia" msgstr "Butia til venstre" -#: taextras.py:127 +#: taextras.py:128 msgid "turn the Butia robot at left" msgstr "drej Butia-robotten mod venstre" #. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: This string is shorthand for "turn Butia right" -#: taextras.py:129 +#: taextras.py:130 msgid "right Butia" msgstr "Butia til højre" -#: taextras.py:130 +#: taextras.py:131 msgid "turn the Butia robot at right" msgstr "drej Butia-robotten mod højre" #. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: This string is shorthand for "move Butia backward" -#: taextras.py:132 +#: taextras.py:133 msgid "backward Butia" msgstr "ryk Butia tilbage" -#: taextras.py:133 +#: taextras.py:134 msgid "move the Butia robot backward" msgstr "flyt Butia-robotten tilbage" -#: taextras.py:134 +#: taextras.py:135 +msgid "butia-extra" +msgstr "butia-ekstra" + +#. TRANS: cast means data type conversion +#: taextras.py:137 msgid "Butia Robot extra blocks" msgstr "Ekstra blokke til Butia-robotten" -#: taextras.py:135 +#: taextras.py:138 msgid "pin mode Butia" msgstr "pin-tilstand for Butia" -#: taextras.py:136 taextras.py:319 taextras.py:485 +#: taextras.py:139 taextras.py:339 taextras.py:508 msgid "pin" msgstr "fastgør" -#: taextras.py:137 taextras.py:486 +#: taextras.py:140 taextras.py:509 msgid "mode" msgstr "tilstand" -#: taextras.py:138 +#: taextras.py:141 msgid "Select the pin function (INPUT, OUTPUT)." msgstr "Vælg pin-funktionen (INPUT, OUTPUT)." -#: taextras.py:139 +#: taextras.py:142 msgid "read pin Butia" msgstr "læs pin for Butia" -#: taextras.py:140 +#: taextras.py:143 msgid "read the value of a pin" msgstr "læs værdien af en pin" -#: taextras.py:141 +#: taextras.py:144 msgid "write pin Butia" msgstr "skriv pin for Butia" -#: taextras.py:142 taextras.py:489 TurtleArt/tabasics.py:976 -#: TurtleArt/tawindow.py:4581 +#: taextras.py:145 taextras.py:512 TurtleArt/tabasics.py:989 +#: TurtleArt/tawindow.py:4676 msgid "value" msgstr "værdi" -#: taextras.py:143 +#: taextras.py:146 msgid "set a hack pin to 0 or 1" msgstr "angiv en hack-pin til 0 eller 1" -#: taextras.py:144 taextras.py:463 +#: taextras.py:147 taextras.py:485 msgid "INPUT" msgstr "INPUT" -#: taextras.py:145 +#: taextras.py:148 msgid "Configure hack pin for digital input." msgstr "Sæt hack-pin til digitalt input." -#: taextras.py:146 taextras.py:461 +#: taextras.py:149 taextras.py:483 msgid "HIGH" msgstr "HØJ" -#: taextras.py:147 +#: taextras.py:150 msgid "Set HIGH value for digital pin." msgstr "Angiv værdien af HØJ for digital pin." -#: taextras.py:148 taextras.py:462 +#: taextras.py:151 taextras.py:484 msgid "LOW" msgstr "LAV" -#: taextras.py:149 taextras.py:501 +#: taextras.py:152 taextras.py:524 msgid "Set LOW value for digital port." msgstr "Angiv værdien af LAV for digital port." -#: taextras.py:150 taextras.py:464 +#: taextras.py:153 taextras.py:486 msgid "OUTPUT" msgstr "OUTPUT" -#: taextras.py:151 +#: taextras.py:154 msgid "Configure hack port for digital output." msgstr "Sæt hack-port til digitalt output." -#: taextras.py:152 +#: taextras.py:155 +msgid "butia-cast" +msgstr "butia-udsendelse" + +#: taextras.py:156 msgid "Butia Robot cast blocks" msgstr "Senderblokke til Butia-robotten" -#: taextras.py:153 +#: taextras.py:157 msgid "Butia" msgstr "Butia" -#: taextras.py:154 +#. TRANS: cast means data type conversion +#: taextras.py:159 msgid "CAST\n" msgstr "UDSEND\n" -#: taextras.py:155 +#: taextras.py:160 msgid "new name" msgstr "nyt navn" -#: taextras.py:156 +#: taextras.py:161 msgid "original" msgstr "original" -#: taextras.py:157 +#: taextras.py:162 msgid "f(x)=" msgstr "f(x)=" -#: taextras.py:158 +#: taextras.py:163 msgid "name" msgstr "navn" -#: taextras.py:159 +#. TRANS: cast means data type conversion +#: taextras.py:165 msgid "Cast a new block" msgstr "Udsend en ny blok" -#: taextras.py:160 +#: taextras.py:166 #, python-format msgid "generic module %s" msgstr "generisk modul %s" -#: taextras.py:161 +#: taextras.py:167 +msgid "Butia IP" +msgstr "Butia IP" + +#: taextras.py:168 +msgid "change the IP of butia robot" +msgstr "ændrer IP for butia-robotten" + +#: taextras.py:169 #, python-format msgid "ERROR: The pin %s must be in OUTPUT mode." msgstr "FEJL: Pin skal være i OUTPUT-tilstand." -#: taextras.py:162 +#: taextras.py:170 #, python-format msgid "ERROR: The pin %s must be in INPUT mode." msgstr "FEJL: Pin skal være i INPUT-tilstand." -#: taextras.py:163 +#: taextras.py:171 #, python-format msgid "ERROR: Something wrong with function '%s'" msgstr "FEJL: Der er noget galt med funktion \"%s\"" -#: taextras.py:164 +#: taextras.py:172 #, python-format msgid "ERROR: cannot init GCONF client: %s" msgstr "FEJL: kan ikke initialisere GCONF-klient: %s" -#: taextras.py:165 +#. TRANS: cast means data type conversion +#: taextras.py:174 msgid "ERROR: You must cast Sensor or Actuator: A, B or C" msgstr "FEJL: Du skal udsende Sensor eller Aktuator: A, B eller C" -#: taextras.py:166 +#: taextras.py:175 +#, python-format +msgid "ERROR: Invalid IP '%s'" +msgstr "FEJL: Ugyldig IP '%s'" + +#: taextras.py:176 msgid "Creating PyBot server" msgstr "Opretter PyBot-server" -#: taextras.py:167 +#: taextras.py:177 msgid "ERROR creating PyBot server" msgstr "FEJL under oprettelse af PyBot-server" -#: taextras.py:168 +#: taextras.py:178 msgid "PyBot is alive!" msgstr "PyBot er i live!" -#: taextras.py:169 +#: taextras.py:179 msgid "Ending butia polling" msgstr "Afslutter butia-polling" -#: taextras.py:173 +#: taextras.py:183 msgid "Error importing Pygame. This plugin require Pygame 1.9" msgstr "Fejl under import af Pygame. Denne udvidelse kræver Pygame 1.9" -#: taextras.py:174 +#: taextras.py:184 msgid "Error on initialization of the camera" msgstr "Fejl under initialisering af kameraet" -#: taextras.py:175 +#: taextras.py:185 msgid "No camera was found" msgstr "Der blev ikke fundet et kamera" -#: taextras.py:176 +#: taextras.py:186 msgid "Error stopping camera" msgstr "Fejl under standsning af kamera" -#: taextras.py:177 +#: taextras.py:187 msgid "Error starting camera" msgstr "Fejl under start af kamera" #. TRANS: The "mask" is used to restrict processing to a region in the image -#: taextras.py:179 +#: taextras.py:189 msgid "Error in get mask" msgstr "Fejl ved hentning af maske" -#: taextras.py:180 +#: taextras.py:190 +msgid "followme" +msgstr "følgmig" + +#: taextras.py:191 #, fuzzy msgid "FollowMe" msgstr "" @@ -533,37 +566,37 @@ msgstr "" "#-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-#\n" "FølgMig" -#: taextras.py:181 +#: taextras.py:192 msgid "refresh FollowMe" msgstr "genopfrisk FollowMe" -#: taextras.py:182 +#: taextras.py:193 msgid "Search for a connected camera." msgstr "Søg efter en tilsluttet kamera." #. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: the calibration is used to match an RGB color to a target -#: taextras.py:184 +#: taextras.py:195 msgid "calibration" msgstr "kalibrering" -#: taextras.py:185 +#: taextras.py:196 msgid "store a personalized calibration" msgstr "gem en personaliseret kalibrering" -#: taextras.py:186 +#: taextras.py:197 msgid "return a personalized calibration" msgstr "returnér en personaliseret kalibrering" -#: taextras.py:187 +#: taextras.py:198 msgid "follow" msgstr "følg" -#: taextras.py:188 +#: taextras.py:199 msgid "follow a color or calibration" msgstr "følg en farve eller en kalibrering" -#: taextras.py:189 plugins/camera_sensor/camera_sensor.py:80 +#: taextras.py:200 plugins/camera_sensor/camera_sensor.py:80 #: plugins/camera_sensor/camera_sensor.py:93 #: plugins/camera_sensor/camera_sensor.py:128 #: plugins/camera_sensor/camera_sensor.py:141 @@ -572,326 +605,362 @@ msgstr "følg en farve eller en kalibrering" msgid "brightness" msgstr "lysstyrke" -#: taextras.py:190 +#: taextras.py:201 msgid "set the camera brightness as a value between 0 to 255." msgstr "angiv kameralysstyrken til en værdi mellem 0 og 255." -#: taextras.py:191 +#: taextras.py:202 msgid "minimum pixels" msgstr "mindste antal billedpunkter" -#: taextras.py:192 +#: taextras.py:203 msgid "set the minimal number of pixels to follow" msgstr "angiv det mindste antal billedpunkter som skal følges" -#: taextras.py:193 +#: taextras.py:204 msgid "threshold" msgstr "tærskelværdi" #. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: RGB color space (red, green, blue) -#: taextras.py:195 +#: taextras.py:206 msgid "set a threshold for a RGB color" msgstr "angiv en grænse for en RGB-farve" -#: taextras.py:196 +#: taextras.py:207 msgid "camera mode" msgstr "kamera-tilstand" #. TRANS: RGB, YUV, and HSV are color spaces -#: taextras.py:198 +#: taextras.py:209 msgid "set the color mode of the camera: RGB; YUV or HSV" msgstr "angiv farvetilstanden for kameraet: RGB; YUV eller HSV" -#: taextras.py:199 +#: taextras.py:210 msgid "get brightness" msgstr "hent lysstyrke" -#: taextras.py:200 +#: taextras.py:211 msgid "get the brightness of the ambient light" msgstr "hent lysstyrken for det omgivende lys" -#: taextras.py:201 +#: taextras.py:212 msgid "average color" msgstr "farvegennemsnit" -#: taextras.py:202 +#: taextras.py:213 msgid "" -"if set to 0 then color averaging is off during calibration; for other values " +"if set to 0 then color averaging is off during calibration;for other values, " "it is on" msgstr "" "hvis angivet til 0, så er farvegennemsnit slået fra under kalibrering; for " "andre værdier er det slået til" -#: taextras.py:204 +#: taextras.py:215 msgid "x position" msgstr "x-position" -#: taextras.py:205 +#: taextras.py:216 msgid "return x position" msgstr "returnerer x-position" -#: taextras.py:206 +#: taextras.py:217 msgid "y position" msgstr "y-position" -#: taextras.py:207 +#: taextras.py:218 msgid "return y position" msgstr "returnerer y-position" -#: taextras.py:208 +#: taextras.py:219 msgid "pixels" msgstr "billedpunkter" -#: taextras.py:209 +#: taextras.py:220 msgid "return the number of pixels of the biggest blob" msgstr "returnér antallet af billedpunkter for den største klat" #. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: RGB color space (red, green, blue) -#: taextras.py:211 +#: taextras.py:222 +msgid "RGB" +msgstr "RGB" + +#: taextras.py:223 msgid "set the color mode of the camera to RGB" msgstr "angiver at farvetilstanden for kameraet er RGB" #. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: YUV color space (luminance, chrominance) -#: taextras.py:213 +#: taextras.py:225 +msgid "YUV" +msgstr "YUV" + +#: taextras.py:226 msgid "set the color mode of the camera to YUV" msgstr "angiver at farvetilstanden for kameraet er YUV" #. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: HSV color space (hue, saturation, value) -#: taextras.py:215 +#: taextras.py:228 +msgid "HSV" +msgstr "HSV" + +#: taextras.py:229 msgid "set the color mode of the camera to HSV" msgstr "angiver at farvetilstanden for kameraet er HSV" -#: taextras.py:216 +#: taextras.py:230 +msgid "get color" +msgstr "hent farve" + +#: taextras.py:231 +msgid "get the color of an object" +msgstr "hent farven for et objekt" + +#: taextras.py:232 +msgid "color distance" +msgstr "farveafstand" + +#: taextras.py:233 +msgid "set the distance to identify a color" +msgstr "angiver afstanden til identificering af farve" + +#: taextras.py:234 msgid "empty calibration" msgstr "tøm kalibrering" -#: taextras.py:217 +#: taextras.py:235 msgid "error in string conversion" msgstr "fejl i konvertering af streng" #. TRANS: Pattern detection is a plugin that allow detect signals #. with the camera -#: taextras.py:223 +#: taextras.py:241 msgid "Pattern detection" msgstr "Mønstergenkendelse" -#: taextras.py:224 +#: taextras.py:242 +msgid "pattern_detection" +msgstr "mønster_genkendelse" + +#: taextras.py:243 msgid "Seeing signal" msgstr "Kigge-signal" -#: taextras.py:225 +#: taextras.py:244 msgid "Returns True if the signal is in front of the camera" msgstr "Returnerer Sand hvis signalet er foran kameraet" -#: taextras.py:226 +#: taextras.py:245 msgid "Distance to signal" msgstr "Afstanden til signalet" -#: taextras.py:227 +#: taextras.py:246 msgid "Returns the distance of the signal to the camera in millimeters" msgstr "Returnerer afstanden af signalet til kameraet i milimeter" #. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: SumBot is a robot programmed for "Sumo wrestling" -#: taextras.py:232 +#: taextras.py:251 msgid "SumBot" msgstr "SumBot" -#: taextras.py:233 +#: taextras.py:252 +msgid "sumtia" +msgstr "sumtia" + +#: taextras.py:253 msgid "speed SumBot" msgstr "SumBot hastighed" -#: taextras.py:234 +#: taextras.py:254 msgid "submit the speed to the SumBot" msgstr "send hastigheden til SumBotten" -#: taextras.py:235 +#: taextras.py:255 msgid "set the default speed for the movement commands" msgstr "angiv standard for hastigheden på flytte-kommandoer" #. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: This string is shorthand for "move SumBot forward" -#: taextras.py:237 +#: taextras.py:257 msgid "forward SumBot" msgstr "ryk SumBot frem" -#: taextras.py:238 +#: taextras.py:258 msgid "move SumBot forward" msgstr "flyt SumBot frem" #. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: This string is shorthand for "move SumBot backward" -#: taextras.py:240 +#: taextras.py:260 msgid "backward SumBot" msgstr "ryk SumBot tilbage" -#: taextras.py:241 +#: taextras.py:261 msgid "move SumBot backward" msgstr "flyt SumBot tilbage" -#: taextras.py:242 +#: taextras.py:262 msgid "stop SumBot" msgstr "stop SumBot" -#: taextras.py:243 +#: taextras.py:263 msgid "stop the SumBot" msgstr "stop SumBotten" #. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: This string is shorthand for "turn SumBot left" -#: taextras.py:245 +#: taextras.py:265 msgid "left SumBot" msgstr "SumBot til venstre" -#: taextras.py:246 +#: taextras.py:266 msgid "turn left the SumBot" msgstr "drej Sumbotten til venstre" #. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: This string is shorthand for "move SumBot right" -#: taextras.py:248 +#: taextras.py:268 msgid "right SumBot" msgstr "SumBot til højre" -#: taextras.py:249 +#: taextras.py:269 msgid "turn right the SumBot" msgstr "drej SumBotten til højre" #. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: The angle to the center is the angle SumBot must turn to #. face the center of the playing field -#: taextras.py:252 +#: taextras.py:272 msgid "angle to center" msgstr "vinkel til centrum" #. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: dohyo is the playing field -#: taextras.py:254 +#: taextras.py:274 msgid "get the angle to the center of the dohyo" msgstr "hent vinklen til dohyoens centrum" #. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: The angle to the center is the angle SumBot must turn to #. face the Enemy (opponent) -#: taextras.py:257 +#: taextras.py:277 msgid "angle to Enemy" msgstr "vinkel en fjende" -#: taextras.py:258 +#: taextras.py:278 msgid "get the angle to the Enemy" msgstr "hent vinklen til fjenden" #. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: This string is shorthand for "x coordinate of SumBot" -#: taextras.py:260 +#: taextras.py:280 msgid "x coor. SumBot" msgstr "x-koord. SumBot" -#: taextras.py:261 +#: taextras.py:281 msgid "get the x coordinate of the SumBot" msgstr "hent x-koordinatet for SumBotten" #. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: This string is shorthand for "y coordinate of SumBot" -#: taextras.py:263 +#: taextras.py:283 msgid "y coor. SumBot" msgstr "y-koord. SumBot" -#: taextras.py:264 +#: taextras.py:284 msgid "get the y coordinate of the SumBot" msgstr "hent y-koordinatet for SumBotten" #. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" -#: taextras.py:266 +#: taextras.py:286 msgid "x coor. Enemy" msgstr "x-koord. fjende" -#: taextras.py:267 +#: taextras.py:287 msgid "get the x coordinate of the Enemy" msgstr "hent x-koordinatet for fjenden" #. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" -#: taextras.py:269 +#: taextras.py:289 msgid "y coor. Enemy" msgstr "y-koord. fjende" -#: taextras.py:270 +#: taextras.py:290 msgid "get the y coordinate of the Enemy" msgstr "hent y-koordinatet for fjenden" #. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: This string is shorthand for "rotation of SumBot" -#: taextras.py:272 +#: taextras.py:292 msgid "rotation SumBot" msgstr "rotation for SumBot" -#: taextras.py:273 +#: taextras.py:293 msgid "get the rotation of the Sumbot" msgstr "hent rotationen for SumBotten" #. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: This string is shorthand for "rotation of SumBot's enemy" -#: taextras.py:275 +#: taextras.py:295 msgid "rotation Enemy" msgstr "rotation for fjende" -#: taextras.py:276 +#: taextras.py:296 msgid "get the rotation of the Enemy" msgstr "hent rotationen for fjenden" -#: taextras.py:277 +#: taextras.py:297 msgid "distance to center" msgstr "afstand til centrum" #. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: dohyo is the playing field -#: taextras.py:279 +#: taextras.py:299 msgid "get the distance to the center of the dohyo" msgstr "hent afstanden til dohyoens centrum" -#: taextras.py:280 +#: taextras.py:300 msgid "distance to Enemy" msgstr "afstand til fjende" -#: taextras.py:281 +#: taextras.py:301 msgid "get the distance to the Enemy" msgstr "hent afstanden til fjenden" -#: taextras.py:282 +#: taextras.py:302 msgid "update information" msgstr "opdatér information" -#: taextras.py:283 +#: taextras.py:303 msgid "update information from the server" msgstr "opdatér information fra serveren" #. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: Please use similar terms to those used in the Physics Activity -#: taextras.py:288 +#: taextras.py:308 msgid "Palette of physics blocks" msgstr "Palette af fysik-blokke" -#: taextras.py:289 +#: taextras.py:309 msgid "start polygon" msgstr "start polygon" -#: taextras.py:290 +#: taextras.py:310 msgid "Begin defining a new polygon based on the current Turtle xy position." msgstr "" "Begynd med at definere en ny polygon baseret på den nuværende xy-position " "for skildpadde." -#: taextras.py:292 +#: taextras.py:312 msgid "add point" msgstr "tilføj punkt" -#: taextras.py:293 +#: taextras.py:313 msgid "" "Add a new point to the current polygon based on the current Turtle xy " "position." @@ -899,88 +968,88 @@ msgstr "" "Tilføj et nyt punkt til den nuværende polygon baseret på den nuværende xy-" "position for skildpadde." -#: taextras.py:295 +#: taextras.py:315 msgid "end polygon" msgstr "afslut polygon" -#: taextras.py:296 +#: taextras.py:316 msgid "Define a new polygon." msgstr "Definér en ny polygon." -#: taextras.py:297 +#: taextras.py:317 msgid "end filled polygon" msgstr "afslut udfyldt polygon" -#: taextras.py:298 +#: taextras.py:318 msgid "Not a simple polygon" msgstr "Ikke en simpel polygon" -#: taextras.py:299 +#: taextras.py:319 msgid "Define a new filled polygon." msgstr "Definér en ny udfyldt polygon." -#: taextras.py:300 +#: taextras.py:320 msgid "triangle" msgstr "trekant" #. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: base of a triangle -#: taextras.py:302 +#: taextras.py:322 msgid "base" msgstr "base" -#: taextras.py:303 taextras.py:309 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896 +#: taextras.py:323 taextras.py:329 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:934 msgid "height" msgstr "højde" -#: taextras.py:304 +#: taextras.py:324 msgid "Add a triangle object to the project." msgstr "Tilføj et trekantsobjekt til projektet." -#: taextras.py:305 +#: taextras.py:325 msgid "circle" msgstr "cirkel" -#: taextras.py:306 +#: taextras.py:326 msgid "Add a circle object to the project." msgstr "Tilføj et cirkelobjekt til projektet." -#: taextras.py:307 +#: taextras.py:327 msgid "rectangle" msgstr "rektangel" -#: taextras.py:308 plugins/turtle_blocks_extras/turtle_blocks_extras.py:872 +#: taextras.py:328 plugins/turtle_blocks_extras/turtle_blocks_extras.py:910 msgid "width" msgstr "bredde" -#: taextras.py:310 +#: taextras.py:330 msgid "Add a rectangle object to the project." msgstr "Tilføj et rektangelobjekt til projektet." -#: taextras.py:311 +#: taextras.py:331 msgid "reset" msgstr "nulstil" -#: taextras.py:312 +#: taextras.py:332 msgid "Reset the project; clear the object list." msgstr "Nulstil projektet; ryd objektlisten." -#: taextras.py:313 +#: taextras.py:333 msgid "motor" msgstr "motor" #. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: torque as in engine torque -#: taextras.py:315 +#: taextras.py:335 msgid "torque" msgstr "drejningsmoment" -#: taextras.py:316 +#: taextras.py:336 msgid "speed" msgstr "hastighed" -#: taextras.py:317 +#: taextras.py:337 msgid "" "Motor torque and speed range from 0 (off) to positive numbers; motor is " "placed on the most recent object created." @@ -988,23 +1057,23 @@ msgstr "" "Drejningsmoment på motor og hastighedsinterval fra 0 (fra) til positive tal; " "motor placeres på det objekt som allersenest er oprettet." -#: taextras.py:320 +#: taextras.py:340 msgid "Pin an object down so that it cannot fall." msgstr "Fastgør et objekt nede, så det ikke kan falde." -#: taextras.py:321 +#: taextras.py:341 msgid "joint" msgstr "sammensæt" -#: taextras.py:322 TurtleArt/tabasics.py:210 TurtleArt/tabasics.py:288 +#: taextras.py:342 TurtleArt/tabasics.py:212 TurtleArt/tabasics.py:291 msgid "x" msgstr "x" -#: taextras.py:323 TurtleArt/tabasics.py:210 TurtleArt/tabasics.py:288 +#: taextras.py:343 TurtleArt/tabasics.py:212 TurtleArt/tabasics.py:291 msgid "y" msgstr "y" -#: taextras.py:324 +#: taextras.py:344 msgid "" "Join two objects together (the most recent object created and the object at " "point x, y)." @@ -1012,39 +1081,39 @@ msgstr "" "Sammensæt to objekter (de allersenest oprettede objekt og objektet ved " "punktet x, y)." -#: taextras.py:326 +#: taextras.py:346 msgid "save as Physics activity" msgstr "gem som Fysik-aktivitet" -#: taextras.py:327 +#: taextras.py:347 msgid "Save the project to the Journal as a Physics activity." msgstr "Gem projektet til Journalen som en fysik-aktivitet." #. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: Here, gear means a toothed wheel, as in a clock-works -#: taextras.py:329 +#: taextras.py:349 msgid "gear" msgstr "gear" -#: taextras.py:330 +#: taextras.py:350 msgid "Add a gear object to the project." msgstr "Tilføj et gear-objekt til projektet." -#: taextras.py:331 +#: taextras.py:351 msgid "density" msgstr "tæthed" -#: taextras.py:332 +#: taextras.py:352 msgid "" "Set the density property for objects (density can be any positive number)." msgstr "" "Angiv tæthedsegenskab for objekter (tæthed kan være ethvert positivt tal)." -#: taextras.py:334 +#: taextras.py:354 msgid "friction" msgstr "friktion" -#: taextras.py:335 +#: taextras.py:355 msgid "" "Set the friction property for objects (value from 0 to 1, where 0 turns " "friction off and 1 is strong friction)." @@ -1054,11 +1123,11 @@ msgstr "" #. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: bounciness is coefficient of restitution -#: taextras.py:338 +#: taextras.py:358 msgid "bounciness" msgstr "fjedringsgrad" -#: taextras.py:339 +#: taextras.py:359 msgid "" "Set the bounciness property for objects (a value from 0 to 1, where 0 means " "no bounce and 1 is very bouncy)." @@ -1068,11 +1137,11 @@ msgstr "" #. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: dynamic here means moving vs in a fixed position -#: taextras.py:342 +#: taextras.py:362 msgid "dynamic" msgstr "dynamisk" -#: taextras.py:343 +#: taextras.py:363 msgid "" "If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." msgstr "" @@ -1081,27 +1150,27 @@ msgstr "" #. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: WeDo is a robotics product of the LEGO company -#: taextras.py:349 +#: taextras.py:369 msgid "Palette of WeDo blocks" msgstr "Palette af WeDo-blokke" -#: taextras.py:350 +#: taextras.py:370 msgid "WeDo" msgstr "WeDo" -#: taextras.py:351 +#: taextras.py:371 msgid "set current WeDo device" msgstr "angiv nuværende WeDo-enhed" -#: taextras.py:352 +#: taextras.py:372 msgid "number of WeDo devices" msgstr "antallet af WeDo-enheder" -#: taextras.py:353 +#: taextras.py:373 msgid "tilt" msgstr "vip" -#: taextras.py:354 +#: taextras.py:374 msgid "" "tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " "tilt left, 2 == tilt right)" @@ -1111,173 +1180,169 @@ msgstr "" #. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: This string is shorthand for "output of the distance sensor" -#: taextras.py:358 +#: taextras.py:378 msgid "distance sensor output" msgstr "afstandssensor output" -#: taextras.py:359 +#: taextras.py:379 msgid "Motor A" msgstr "Motor A" -#: taextras.py:360 +#: taextras.py:380 msgid "returns the current value of Motor A" msgstr "returnerer nuværende værdi fra Motor A" -#: taextras.py:361 +#: taextras.py:381 msgid "Motor B" msgstr "Motor B" -#: taextras.py:362 +#: taextras.py:382 msgid "returns the current value of Motor B" msgstr "returnerer nuværende værdi fra Motor B" -#: taextras.py:363 +#: taextras.py:383 msgid "set the value for Motor A" msgstr "angiv værdien for Motor A" -#: taextras.py:364 +#: taextras.py:384 msgid "set the value for Motor B" msgstr "angiv værdien for Motor B" -#: taextras.py:365 +#: taextras.py:385 msgid "WeDo is unavailable" msgstr "WeDo er ikke tilgængelig" #. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 -#: taextras.py:367 +#: taextras.py:387 #, python-format msgid "WeDo %d is unavailable; defaulting to 1" msgstr "WeDo %d er ikke tilgængelig; anvender standarden 1" #. TRANS: %(device)s and %(wedo_number)d are substitution strings; #. please leave untranslated -#: taextras.py:370 +#: taextras.py:390 #, python-format msgid "%(device)s is unavailable on WeDo %(wedo_number)d" msgstr "%(device)s er ikke tilgængelig på WeDo %(wedo_number)d" #. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: Lego NXT is a robotics product of the LEGO company -#: taextras.py:375 +#: taextras.py:395 msgid "Palette of LEGO NXT blocks of motors" msgstr "Palet med motorer bestående af LEGO NXT-blokke" -#: taextras.py:376 +#: taextras.py:396 msgid "Palette of LEGO NXT blocks of sensors" msgstr "Palet med sensorer bestående af LEGO NXT-blokke" -#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: touch sensor (implemented as a button) -#: taextras.py:378 -msgid "touch" -msgstr "berør" - -#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: distance sensor (implemented using ultrasonics) -#: taextras.py:380 -msgid "ultrasonic" -msgstr "ultrasonisk" - -#: taextras.py:381 TurtleArt/tabasics.py:313 TurtleArt/tabasics.py:326 -#: TurtleArt/tabasics.py:384 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1093 +#: taextras.py:399 TurtleArt/tabasics.py:318 TurtleArt/tabasics.py:331 +#: TurtleArt/tabasics.py:389 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1132 msgid "color" msgstr "farve" -#: taextras.py:383 plugins/audio_sensors/audio_sensors.py:83 +#: taextras.py:401 plugins/audio_sensors/audio_sensors.py:83 #: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:206 msgid "sound" msgstr "lyd" #. TRANS: The brick is the NXT controller -#: taextras.py:386 +#: taextras.py:404 msgid "Please check the connection with the brick" msgstr "Tjek venligst forbindelsen til brikken" -#: taextras.py:387 +#: taextras.py:405 #, python-format msgid "Invalid port '%s'. Port must be: PORT A, B or C" msgstr "Ugyldig port '%s'. Porten skal være: PORT A, B eller C" -#: taextras.py:388 +#: taextras.py:406 #, python-format msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" msgstr "Ugyldig port '%s'. Porten skal være: PORT 1, 2, 3 eller 4" -#: taextras.py:389 +#: taextras.py:407 msgid "The value of power must be between -127 to 127" msgstr "Værdien af styrken skal være mellem -127 og 127" -#: taextras.py:390 +#: taextras.py:408 #, python-format msgid "The parameter must be a integer, not '%s'" msgstr "Parameteret skal være et heltal, ikke '%s'" -#: taextras.py:391 +#: taextras.py:409 msgid "An error has occurred: check all connections and try to reconnect" msgstr "" "Der er opstået en fejl: tjek alle forbindelser og for at tilslutte igen" -#: taextras.py:392 +#: taextras.py:410 #, python-format msgid "NXT found %s bricks" msgstr "NXT fandt %s brikker" -#: taextras.py:393 +#: taextras.py:411 msgid "NXT not found" msgstr "NXT ikke fundet" -#: taextras.py:394 +#: taextras.py:412 #, python-format msgid "Brick number %s was not found" msgstr "Brik nummer %2 blev ikke fundet" -#: taextras.py:395 +#: taextras.py:413 +msgid "nxt-motors" +msgstr "nxt-motorer" + +#: taextras.py:414 msgid "refresh NXT" msgstr "opfrisk NXT" -#: taextras.py:396 +#: taextras.py:415 msgid "Search for a connected NXT brick." msgstr "Søg efter en tilsluttet NXT-klods." -#: taextras.py:397 +#: taextras.py:416 msgid "NXT" msgstr "NXT" -#: taextras.py:398 +#: taextras.py:417 msgid "set current NXT device" msgstr "angiv nuværende NXT-enhed" -#: taextras.py:399 +#: taextras.py:418 +msgid "number of NXTs" +msgstr "antal NXT'er" + +#: taextras.py:419 msgid "number of NXT devices" msgstr "antallet af NXT-enheder" -#: taextras.py:400 +#: taextras.py:420 msgid "brick name" msgstr "navn på brik" -#: taextras.py:401 +#: taextras.py:421 msgid "Get the name of a brick." msgstr "Hent navnet på en brik." -#: taextras.py:402 +#: taextras.py:422 msgid "play tone" msgstr "afspil tone" -#: taextras.py:403 +#: taextras.py:423 msgid "frequency" msgstr "frekvens" -#: taextras.py:404 plugins/turtle_blocks_extras/turtle_blocks_extras.py:425 +#: taextras.py:424 plugins/turtle_blocks_extras/turtle_blocks_extras.py:429 msgid "time" msgstr "tid" -#: taextras.py:405 +#: taextras.py:425 msgid "Play a tone at frequency for time." msgstr "Afspil en tone ved frekvens for tid." #. TRANS: turn is the action -#: taextras.py:407 +#: taextras.py:427 msgid "" "turn motor\n" "\n" @@ -1285,25 +1350,25 @@ msgstr "" "drej motor\n" "\n" -#: taextras.py:408 +#: taextras.py:428 msgid "port" msgstr "port" -#: taextras.py:409 -msgid "power" -msgstr "kraft" - #. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: rotations is quantity of turns -#: taextras.py:411 +#: taextras.py:430 msgid "rotations" msgstr "rotationer" -#: taextras.py:412 +#: taextras.py:431 +msgid "power" +msgstr "kraft" + +#: taextras.py:432 msgid "turn a motor" msgstr "drej en motor" -#: taextras.py:413 +#: taextras.py:434 msgid "" "synchronize\n" "\n" @@ -1313,39 +1378,39 @@ msgstr "" "\n" "motorer" -#: taextras.py:414 +#: taextras.py:435 msgid "steering" msgstr "styring" -#: taextras.py:415 +#: taextras.py:436 msgid "synchronize two motors connected in PORT B and PORT C" msgstr "synkronisér to motorer tilsluttet PORT B og PORT C" -#: taextras.py:416 +#: taextras.py:437 msgid "PORT A" msgstr "PORT A" -#: taextras.py:417 +#: taextras.py:438 msgid "PORT A of the brick" msgstr "PORT A på klodsen" -#: taextras.py:418 +#: taextras.py:439 msgid "PORT B" msgstr "PORT B" -#: taextras.py:419 +#: taextras.py:440 msgid "PORT B of the brick" msgstr "PORT B på klodsen" -#: taextras.py:420 +#: taextras.py:441 msgid "PORT C" msgstr "PORT C" -#: taextras.py:421 +#: taextras.py:442 msgid "PORT C of the brick" msgstr "PORT C på klodsen" -#: taextras.py:422 +#: taextras.py:443 msgid "" "synchronize\n" "motors" @@ -1353,132 +1418,136 @@ msgstr "" "synkronisér\n" "motorer" -#: taextras.py:423 +#: taextras.py:444 msgid "start motor" msgstr "start motor" -#: taextras.py:424 +#: taextras.py:445 msgid "Run a motor forever." msgstr "Kør en motor for evigt." -#: taextras.py:425 +#: taextras.py:446 msgid "brake motor" msgstr "brems motor" -#: taextras.py:426 +#: taextras.py:447 msgid "Stop a specified motor." msgstr "Stop en angivet motor." #. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: reset is used to reset the counter associated with the motor -#: taextras.py:428 +#: taextras.py:449 msgid "reset motor" msgstr "nulstil motor" -#: taextras.py:429 +#: taextras.py:450 msgid "Reset the motor counter." msgstr "Nulstil motorens tæller." -#: taextras.py:430 +#: taextras.py:451 msgid "motor position" msgstr "motorens placering" -#: taextras.py:431 +#: taextras.py:452 msgid "Get the motor position." msgstr "Hent motorens placering." -#: taextras.py:432 +#: taextras.py:453 +msgid "nxt-sensors" +msgstr "next-sensorer" + +#: taextras.py:454 msgid "PORT 1" msgstr "PORT 1" -#: taextras.py:433 +#: taextras.py:455 msgid "PORT 1 of the brick" msgstr "PORT 1 på klodsen" -#: taextras.py:434 +#: taextras.py:456 msgid "read" msgstr "læs" -#: taextras.py:435 +#: taextras.py:457 plugins/turtle_blocks_extras/turtle_blocks_extras.py:309 msgid "sensor" msgstr "sensor" -#: taextras.py:436 +#: taextras.py:458 msgid "Read sensor output." msgstr "Læs uddata fra sensor." -#: taextras.py:437 +#: taextras.py:459 msgid "PORT 2" msgstr "PORT 2" -#: taextras.py:438 +#: taextras.py:460 msgid "PORT 2 of the brick" msgstr "PORT 2 på klodsen" -#: taextras.py:439 +#: taextras.py:461 msgid "light sensor" msgstr "lys-sensor" -#: taextras.py:440 +#: taextras.py:462 msgid "gray sensor" msgstr "grå-sensor" -#: taextras.py:441 +#: taextras.py:463 msgid "PORT 3" msgstr "PORT 3" -#: taextras.py:442 +#: taextras.py:464 msgid "PORT 3 of the brick" msgstr "PORT 3 på klodsen" -#: taextras.py:443 -msgid "touch sensor" -msgstr "berør sensor" +#: taextras.py:465 +msgid "button sensor" +msgstr "knap-sensor" -#: taextras.py:444 +#: taextras.py:466 msgid "distance sensor" msgstr "afstandssensor" -#: taextras.py:445 +#: taextras.py:467 msgid "PORT 4" msgstr "PORT 4" -#: taextras.py:446 +#: taextras.py:468 msgid "PORT 4 of the brick" msgstr "PORT 4 på klodsen" -#: taextras.py:447 +#: taextras.py:469 msgid "sound sensor" msgstr "lydsensor" -#: taextras.py:448 +#: taextras.py:470 msgid "color sensor" msgstr "farve-sensor" #. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: set light is used to set the light level associated with #. the color sensor (which can emit light as well as sense it) -#: taextras.py:451 +#: taextras.py:473 msgid "set light" msgstr "angiv lys" -#: taextras.py:452 +#: taextras.py:474 msgid "Set color sensor light." msgstr "Angiv farve for sensor-lys." #. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: the battery level is the charge level of the brick -#: taextras.py:454 +#: taextras.py:476 msgid "battery level" msgstr "batteri-niveau" -#: taextras.py:455 +#: taextras.py:477 msgid "Get the battery level of the brick in millivolts" msgstr "Indhent batteri-niveauet for brikken i millivolt" #. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: Arduino plugin to control an Arduino board -#: taextras.py:460 +#: taextras.py:482 #, fuzzy msgid "Palette of Arduino blocks" msgstr "" @@ -1489,94 +1558,98 @@ msgstr "" #. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: PWM is pulse-width modulation -#: taextras.py:466 +#: taextras.py:488 msgid "PWM" msgstr "PBM" -#: taextras.py:467 +#: taextras.py:489 msgid "SERVO" msgstr "SERVO" -#: taextras.py:468 +#: taextras.py:490 msgid "ERROR: Check the Arduino and the number of port." msgstr "FEJL: Tjek Arduiono'en og nummeret på porten." -#: taextras.py:469 +#: taextras.py:491 msgid "ERROR: Value must be a number from 0 to 255." msgstr "FEJL: Værdi skal være et tal mellem 0 og 255." -#: taextras.py:470 +#: taextras.py:492 msgid "ERROR: Value must be either HIGH or LOW, 0 or 1" msgstr "FEJL: Værdiskal vær enten HØJ eller LAV, 0 eller 1" -#: taextras.py:471 +#: taextras.py:493 msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." msgstr "FEJL: Tilstanden skal være enten INPUT, OUTPUT, PBM eller SERVO." -#: taextras.py:472 +#: taextras.py:494 msgid "ERROR: The value must be an integer." msgstr "FEJL: Værdien skal være et heltal." -#: taextras.py:473 +#: taextras.py:495 msgid "ERROR: The pin must be an integer." msgstr "FEJL: Pin skal være et heltal." -#: taextras.py:474 +#: taextras.py:496 +msgid "arduino" +msgstr "arduino" + +#: taextras.py:497 msgid "refresh Arduino" msgstr "genopfrisk Arduino" -#: taextras.py:475 +#: taextras.py:498 msgid "Search for connected Arduinos." msgstr "Søg efter tilsluttede Arduinoer." -#: taextras.py:476 +#: taextras.py:499 msgid "Arduino" msgstr "Arduino" -#: taextras.py:477 +#: taextras.py:500 msgid "set current Arduino board" msgstr "angiv nuværende Arduino-bræt" -#: taextras.py:478 +#: taextras.py:501 msgid "number of Arduinos" msgstr "antallet af Arduinoer" -#: taextras.py:479 +#: taextras.py:502 msgid "number of Arduino boards" msgstr "antallet af Arduino-bræt" -#: taextras.py:480 +#: taextras.py:503 msgid "Arduino name" msgstr "Arduino-navn" -#: taextras.py:481 +#: taextras.py:504 msgid "Get the name of an Arduino." msgstr "Hent navnet for en Arduino." #. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) #. in which an I/O pin is being used. -#: taextras.py:484 +#: taextras.py:507 msgid "pin mode" msgstr "pin-tilstand" -#: taextras.py:487 +#: taextras.py:510 msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." msgstr "Vælg pin-funktionen (INPUT, OUTPUT, PBM, SERVO)." -#: taextras.py:488 +#: taextras.py:511 msgid "analog write" msgstr "analog skrivning" -#: taextras.py:490 +#: taextras.py:513 msgid "Write analog value in specified port." msgstr "Skriv analog værdi i angivet port." -#: taextras.py:491 +#: taextras.py:514 msgid "analog read" msgstr "analog læsning" -#: taextras.py:492 +#: taextras.py:515 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." @@ -1584,102 +1657,102 @@ msgstr "" "Læs værdi for analog port. Værdi skal mellem 0 og 1023. Brug Vref til at " "fastslå spændingen. For USB, volt=((aflæs)*5)/1024) tilnærmelsesvis." -#: taextras.py:494 +#: taextras.py:517 msgid "digital write" msgstr "digital skrivning" -#: taextras.py:495 +#: taextras.py:518 msgid "Write digital value to specified port." msgstr "Værdi for digital skrivning for angivet port." -#: taextras.py:496 +#: taextras.py:519 msgid "digital read" msgstr "digital læsning" -#: taextras.py:497 +#: taextras.py:520 msgid "Read value from digital port." msgstr "Læs værdi fra digital port." -#: taextras.py:498 +#: taextras.py:521 msgid "Set HIGH value for digital port." msgstr "Angiv værdien af HØJ for digital port." -#: taextras.py:499 +#: taextras.py:522 msgid "Configure Arduino port for digital input." msgstr "Sæt Arduino-port til digitalt input." -#: taextras.py:500 +#: taextras.py:523 msgid "Configure Arduino port to drive a servo." msgstr "Angiv Arduino-port for at køre en servo." -#: taextras.py:502 +#: taextras.py:525 msgid "Configure Arduino port for digital output." msgstr "Sæt Arduino-port til digitalt output." -#: taextras.py:503 +#: taextras.py:526 msgid "Configure Arduino port for PWM (pulse-width modulation)." msgstr "Sæt Arduino-port til PBM (pulsbreddemodulation)." -#: taextras.py:504 +#: taextras.py:527 #, python-format msgid "Not found Arduino %s" msgstr "Ikke fundet - Arduino %s" -#: taextras.py:505 +#: taextras.py:528 msgid "The pin must be an integer" msgstr "Pin skal være et heltal" -#: taextras.py:506 +#: taextras.py:529 msgid "The device must be an integer" msgstr "Enheden skal være et heltal" #. TRANS: plugin to control an ExpEyes device -#: taextras.py:511 +#: taextras.py:534 msgid "Palette of Expeyes blocks" msgstr "Palette af Expeyes-blokke" #. TRANS: Programmable voltage output -#: taextras.py:513 +#: taextras.py:536 msgid "set PVS" msgstr "angiv PVS" -#: taextras.py:514 +#: taextras.py:537 msgid "set programmable voltage output" msgstr "angiv programmerbar udgangseffekt på spænding" #. TRANS: Square wave 1 voltage output -#: taextras.py:516 +#: taextras.py:539 msgid "set SQR1 voltage" msgstr "angiv SQR1-spænding" -#: taextras.py:517 +#: taextras.py:540 msgid "set square wave 1 voltage output" msgstr "angiv udgangseffekt på spænding for firkantet kurve 1" #. TRANS: Square wave 2 voltage output -#: taextras.py:519 +#: taextras.py:542 msgid "set SQR2 voltage" msgstr "angiv SQR2-spænding" -#: taextras.py:520 +#: taextras.py:543 msgid "set square wave 2 voltage output" msgstr "angiv udgangseffekt på spænding for firkantet kurve 2" #. TRANS: Digital output level -#: taextras.py:522 +#: taextras.py:545 msgid "set OD1" msgstr "angiv OD1" -#: taextras.py:523 +#: taextras.py:546 msgid "set digital output level (OD1) low (0) or high (1)" msgstr "angiv niveau på digitalt output (OD1), lav (0) eller høj (1)" #. TRANS: Input 1 voltage level -#: taextras.py:525 +#: taextras.py:548 msgid "IN1 level" msgstr "IN1-niveau" -#: taextras.py:526 +#: taextras.py:549 msgid "" "returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " "volts" @@ -1688,11 +1761,11 @@ msgstr "" "2.5 volt" #. TRANS: Input 2 voltage level -#: taextras.py:529 +#: taextras.py:552 msgid "IN2 level" msgstr "IN2-niveau" -#: taextras.py:530 +#: taextras.py:553 msgid "" "returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " "volts" @@ -1701,11 +1774,11 @@ msgstr "" "2.5 volt" #. TRANS: Resistive sensor voltage level -#: taextras.py:533 +#: taextras.py:556 msgid "SEN level" msgstr "SEN-niveau" -#: taextras.py:534 +#: taextras.py:557 msgid "" "returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " "voltage level <= 2.5 volts" @@ -1713,106 +1786,106 @@ msgstr "" "returnerer 1 når spændingssensor (SEN) >2.5 volt, 0 når SEN-spændingsensor " "<= 2.5 volt" -#: taextras.py:536 +#: taextras.py:559 msgid "capture" msgstr "indfang" -#: taextras.py:537 +#: taextras.py:560 msgid "input" msgstr "input" -#: taextras.py:538 +#: taextras.py:561 msgid "samples" msgstr "stikprøver" -#: taextras.py:539 +#: taextras.py:562 msgid "interval" msgstr "interval" #. TRANS: MS is microseconds -#: taextras.py:541 +#: taextras.py:564 msgid "" "capture multiple samples from input at interval (MS); results pushed to FIFO" msgstr "" "tag flere stikprøver fra input ved interval (MS); resultater skubbes til FIFO" #. TRANS: Analog input 1 voltage level -#: taextras.py:544 +#: taextras.py:567 msgid "A1" msgstr "A1" -#: taextras.py:545 +#: taextras.py:568 msgid "read analog input 1 voltage" msgstr "læs spænding for analog input 1" #. TRANS: Analog input 2 voltage level -#: taextras.py:547 +#: taextras.py:570 msgid "A2" msgstr "A2" -#: taextras.py:548 +#: taextras.py:571 msgid "read analog input 2 voltage" msgstr "læs spænding for analog input 2" #. TRANS: Read input 1 voltage -#: taextras.py:550 +#: taextras.py:573 msgid "IN1" msgstr "IN1" -#: taextras.py:551 +#: taextras.py:574 msgid "read input 1 voltage" msgstr "læs spænding fra input 1" #. TRANS: Read input 2 voltage -#: taextras.py:553 +#: taextras.py:576 msgid "IN2" msgstr "IN2" -#: taextras.py:554 +#: taextras.py:577 msgid "read input 2 voltage" msgstr "læs spænding fra input 2" #. TRANS: Read analog sensor input voltage -#: taextras.py:556 +#: taextras.py:579 msgid "SEN" msgstr "SEN" -#: taextras.py:557 +#: taextras.py:580 msgid "read analog sensor input voltage" msgstr "læs input-spænding fra analog sensor" #. TRANS: Read square wave 1 input voltage -#: taextras.py:559 +#: taextras.py:582 msgid "SQR1" msgstr "SQR1" -#: taextras.py:560 +#: taextras.py:583 msgid "read square wave 1 voltage" msgstr "læs spænding for firkantet bølge 1" #. TRANS: Read square wave 2 input voltage -#: taextras.py:562 +#: taextras.py:585 msgid "SQR2" msgstr "SQR2" -#: taextras.py:563 +#: taextras.py:586 msgid "read square wave 2 voltage" msgstr "læs spænding for firkantet bølge 2" #. TRANS: Read programmable voltage -#: taextras.py:565 +#: taextras.py:588 msgid "PVS" msgstr "PVS" -#: taextras.py:566 +#: taextras.py:589 msgid "read programmable voltage" msgstr "læs programmérbar spænding" -#: taextras.py:567 +#: taextras.py:590 msgid "Expeyes device not found" msgstr "Fandt ikke Expeyes-enhed" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:279 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281 msgid "resume playing video or audio" msgstr "fortsætter afspilning af video eller lyd" @@ -1827,15 +1900,15 @@ msgstr "Titel" msgid "Average RGB color from camera is pushed to the stack" msgstr "Gennemsnitlig RGB-farve fra kamera skubbes tilbage til stakken" -#: TurtleArt/tabasics.py:513 +#: TurtleArt/tabasics.py:520 msgid "yellow" msgstr "gul" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:664 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:670 msgid "displays polar coordinates" msgstr "fremviser polære koordinater" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:472 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:478 msgid "emptys FILO (first-in-last-out heap)" msgstr "tømmer FILO (først-ind-sidst-ud dynge)" @@ -1852,39 +1925,39 @@ msgstr "kamera-output" msgid "push acceleration in x, y, z to heap" msgstr "skub acceleration i x, y, z til hób/heap" -#: TurtleArt/tabasics.py:827 +#: TurtleArt/tabasics.py:838 msgid "if-then operator that uses boolean operators from Numbers palette" msgstr "hvis-så operator som anvender boolske operatorer fra Talpaletten" -#: TurtleArt/tabasics.py:858 +#: TurtleArt/tabasics.py:869 msgid "jogs stack right" msgstr "jogger stak til højre" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:133 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:135 msgid "Sugar Journal media object" msgstr "Sugar Journal medie-objekt" -#: TurtleArt/tabasics.py:967 +#: TurtleArt/tabasics.py:980 msgid "box 2" msgstr "boks 2" -#: TurtleArt/tabasics.py:957 +#: TurtleArt/tabasics.py:970 msgid "box 1" msgstr "boks 1" -#: TurtleArtActivity.py:754 TurtleArtActivity.py:1039 turtleblocks.py:430 +#: TurtleArtActivity.py:796 TurtleArtActivity.py:1081 turtleblocks.py:453 msgid "Step" msgstr "Trin" -#: TurtleArt/tabasics.py:636 +#: TurtleArt/tabasics.py:645 msgid "multiplies two numeric inputs" msgstr "multiplicerer to numeriske input" -#: turtleblocks.py:423 +#: turtleblocks.py:446 msgid "Show/hide blocks" msgstr "Vis/skjul blokke" -#: TurtleArtActivity.py:341 TurtleArtActivity.py:1029 turtleblocks.py:421 +#: TurtleArtActivity.py:367 TurtleArtActivity.py:1071 turtleblocks.py:444 msgid "Hide palette" msgstr "Skjul palette" @@ -1896,11 +1969,11 @@ msgstr "Venner" msgid "My Turtle Art session" msgstr "Min Skildpadde-kunstsession" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:157 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:159 msgid "Sugar Journal video object" msgstr "Sugar Journal videoobjekt" -#: TurtleArt/tabasics.py:516 +#: TurtleArt/tabasics.py:523 msgid "cyan" msgstr "cyan" @@ -1914,50 +1987,50 @@ msgstr "" "En skildpasse inspireret af Logo, der tegner farverige billeder med " "visuelle, programmérbare blokke som kan sammensættes." -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:921 msgid "xcor of right of screen" msgstr "x-kor for højreside af skærm" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:436 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:442 msgid "Palette of extra options" msgstr "Palette af ekstra valgmuligheder" -#: TurtleArtActivity.py:702 TurtleArtActivity.py:719 TurtleArtActivity.py:758 -#: TurtleArtActivity.py:974 +#: TurtleArtActivity.py:744 TurtleArtActivity.py:761 TurtleArtActivity.py:800 +#: TurtleArtActivity.py:1016 msgid "Load example" msgstr "Indlæs eksempel" -#: TurtleArt/tabasics.py:1060 +#: TurtleArt/tabasics.py:1075 msgid "move all blocks to trash" msgstr "flyt alle blokke til papirkurv" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:802 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840 msgid "list" msgstr "liste" -#: turtleblocks.py:299 +#: turtleblocks.py:321 #, python-format msgid "Configuration directory not writable: %s" msgstr "Der kan ikke skrives til konfigurationskatalog: %s" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:277 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:279 msgid "media resume" msgstr "fortsæt medie" -#: TurtleArt/tabasics.py:268 TurtleArt/tawindow.py:4248 +#: TurtleArt/tabasics.py:270 TurtleArt/tawindow.py:4335 msgid "heading" msgstr "bevæger sig mod" -#: TurtleArtActivity.py:951 +#: TurtleArtActivity.py:993 msgid "Sharing blocks disabled" msgstr "Deling af blokke er slået fra" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:239 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:241 msgid "saves turtle graphics as an SVG file in the Sugar Journal" msgstr "gemmer skildpadde-grafik som en SVG-fil i Sugar Journal" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:190 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:204 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:192 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:206 msgid "draws text or show media from the Journal" msgstr "tegner tekst eller viser medie fra Journal" @@ -1965,53 +2038,53 @@ msgstr "tegner tekst eller viser medie fra Journal" msgid "RFID" msgstr "RFID" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:155 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:157 msgid "video" msgstr "video" -#: TurtleArt/tabasics.py:517 +#: TurtleArt/tabasics.py:524 msgid "blue" msgstr "blå" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:656 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662 msgid "displays Cartesian coordinates" msgstr "fremviser kartesiske koordinator" -#: turtleblocks.py:260 +#: turtleblocks.py:282 msgid "No option action:" msgstr "Ingen handling for valgmulighed:" -#: TurtleArt/tabasics.py:866 +#: TurtleArt/tabasics.py:877 msgid "jogs stack down" msgstr "jogger stak ned" -#: TurtleArt/tabasics.py:672 +#: TurtleArt/tabasics.py:681 msgid "modular (remainder) operator" msgstr "modulær (rest) operator" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:951 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:989 msgid "bottom y" msgstr "nederste y" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:236 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 msgid "save SVG" msgstr "gem SVG" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:613 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:630 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:647 msgid "runs code found in the tamyblock.py module found in the Journal" msgstr "kører kode fundet i modulet tamyblock.py som findes i Journal" -#: TurtleArt/tabasics.py:431 +#: TurtleArt/tabasics.py:436 msgid "pen down" msgstr "pen nede" -#: TurtleArt/tabasics.py:789 +#: TurtleArt/tabasics.py:800 msgid "wait" msgstr "vent" -#: TurtleArt/tabasics.py:976 TurtleArt/tabasics.py:992 +#: TurtleArt/tabasics.py:989 TurtleArt/tabasics.py:1005 msgid "box" msgstr "boks" @@ -2019,19 +2092,19 @@ msgstr "boks" msgid "Failed to upload!" msgstr "Mislykkedes med at lægge op!" -#: TurtleArt/tawindow.py:1156 TurtleArt/tawindow.py:1763 +#: TurtleArt/tawindow.py:1232 TurtleArt/tawindow.py:1847 msgid "shift" msgstr "skift" -#: TurtleArt/tabasics.py:922 TurtleArt/tawindow.py:4527 +#: TurtleArt/tabasics.py:935 TurtleArt/tawindow.py:4622 msgid "invokes named action stack" msgstr "påberåber navngiven handlingsstak" -#: TurtleArt/tabasics.py:906 TurtleArt/tabasics.py:909 -#: TurtleArt/tabasics.py:917 TurtleArt/tabasics.py:921 -#: TurtleArt/tawindow.py:1449 TurtleArt/tawindow.py:1546 -#: TurtleArt/tawindow.py:1559 TurtleArt/tawindow.py:2178 -#: TurtleArt/tawindow.py:4513 +#: TurtleArt/tabasics.py:919 TurtleArt/tabasics.py:922 +#: TurtleArt/tabasics.py:930 TurtleArt/tabasics.py:934 +#: TurtleArt/tawindow.py:1532 TurtleArt/tawindow.py:1630 +#: TurtleArt/tawindow.py:1643 TurtleArt/tawindow.py:2263 +#: TurtleArt/tawindow.py:4608 msgid "action" msgstr "handling" @@ -2040,20 +2113,20 @@ msgid "do-until-True operator that uses boolean operators from Numbers palette" msgstr "" "forsæt-indtil-Sand operator som anvender boolske operatorer fra Talpalette" -#: turtleblocks.py:91 +#: turtleblocks.py:94 msgid "usage is" msgstr "forbrug er" -#: TurtleArt/tabasics.py:970 +#: TurtleArt/tabasics.py:983 msgid "Variable 2 (numeric value)" msgstr "Variabel 2 (numerisk værdi)" -#: TurtleArt/tabasics.py:645 +#: TurtleArt/tabasics.py:654 msgid "divide" msgstr "dividér" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:227 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:229 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:240 msgid "picture name" msgstr "billedenavn" @@ -2062,32 +2135,32 @@ msgstr "billedenavn" msgid "while" msgstr "mens" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:913 msgid "the canvas width" msgstr "bredden på lærred" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:498 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:514 msgid "empty heap?" msgstr "tom hób?" -#: TurtleArt/tabasics.py:998 TurtleArt/tawindow.py:4556 +#: TurtleArt/tabasics.py:1011 TurtleArt/tawindow.py:4651 msgid "named variable (numeric value)" msgstr "navngiven variabel (numerisk værdi)" -#: TurtleArt/tawindow.py:1117 TurtleArt/tawindow.py:1742 +#: TurtleArt/tawindow.py:1193 TurtleArt/tawindow.py:1826 msgid "next" msgstr "næste" -#: TurtleArt/tabasics.py:825 +#: TurtleArt/tabasics.py:836 msgid "if then" msgstr "hvis så" -#: TurtleArt/tabasics.py:453 +#: TurtleArt/tabasics.py:458 msgid "set pen size" msgstr "indstil størrelse på pen" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:821 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859 msgid "presentation template: select Journal object (no description)" msgstr "skabelon for præsentation: vælg Journal-objekt (ingen beskrivelse)" @@ -2096,15 +2169,15 @@ msgstr "skabelon for præsentation: vælg Journal-objekt (ingen beskrivelse)" msgid "until" msgstr "indtil" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:265 msgid "media stop" msgstr "medie-stop" -#: TurtleArtActivity.py:326 turtleblocks.py:405 +#: TurtleArtActivity.py:351 turtleblocks.py:428 msgid "Turn on hover help" msgstr "Slå svæve-hjælp til" -#: TurtleArt/tabasics.py:1050 +#: TurtleArt/tabasics.py:1065 msgid "permanently deletes items in trash" msgstr "sletter elementer i papirkurv permanent" @@ -2112,11 +2185,11 @@ msgstr "sletter elementer i papirkurv permanent" msgid "uturn" msgstr "u-vending" -#: TurtleArt/tabasics.py:1008 +#: TurtleArt/tabasics.py:1021 msgid "top of Action 1 stack" msgstr "top af Handling 1 stak" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571 msgid "" "a programmable block: used to add advanced single-variable math equations, e." "g., sin(x)" @@ -2124,30 +2197,30 @@ msgstr "" "en blok som kan programmeres: anvendes til at føje avancerede matematiske " "ligninger med en enkelt variabel, f.eks., sin(x)" -#: TurtleArt/tabasics.py:784 +#: TurtleArt/tabasics.py:795 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:91 msgid "Palette of flow operators" msgstr "Palette af flyde-operatorer" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:751 msgid "top of a collapsed stack" msgstr "top af sammenfoldet stak" -#: TurtleArt/tabasics.py:840 TurtleArt/tabasics.py:848 +#: TurtleArt/tabasics.py:851 TurtleArt/tabasics.py:859 msgid "if-then-else operator that uses boolean operators from Numbers palette" msgstr "if-så-ellers operator som anvender boolske operatorer fra Talpalette" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:351 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355 msgid "returns mouse y coordinate" msgstr "returnerer musens y-koordinat" -#: TurtleArt/tabasics.py:398 +#: TurtleArt/tabasics.py:403 msgid "holds current pen shade" msgstr "holder aktuel skygge for pen" #. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: pitch, duration, amplitude -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:296 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:298 msgid "sinewave" msgstr "sinusbølge" @@ -2155,64 +2228,64 @@ msgstr "sinusbølge" msgid "Login failed" msgstr "Log ind mislykkedes" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:924 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:962 msgid "left x" msgstr "venstre x" -#: TurtleArt/tabasics.py:226 +#: TurtleArt/tabasics.py:228 msgid "set heading" msgstr "indstil retning" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:411 msgid "RGB color under the turtle is pushed to the stack" msgstr "RGB-farve under skildpadden er skubbet over til stakken" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:814 msgid "declutters canvas by hiding blocks" msgstr "gør lærred overskueligt ved at skjule blokke" -#: TurtleArtActivity.py:1039 +#: TurtleArtActivity.py:1081 msgid "w" msgstr "w" -#: TurtleArtActivity.py:1037 +#: TurtleArtActivity.py:1079 msgid "r" msgstr "r" -#: TurtleArtActivity.py:1042 +#: TurtleArtActivity.py:1084 msgid "s" msgstr "s" -#: TurtleArtActivity.py:1030 +#: TurtleArtActivity.py:1072 msgid "p" msgstr "p" -#: TurtleArtActivity.py:1035 +#: TurtleArtActivity.py:1077 msgid "e" msgstr "e" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:551 msgid "Python chr operator" msgstr "Python chr-operator" -#: TurtleArt/tabasics.py:857 +#: TurtleArt/tabasics.py:868 msgid "horizontal space" msgstr "vandret afstand" -#: TurtleArtActivity.py:669 TurtleArtActivity.py:826 +#: TurtleArtActivity.py:707 TurtleArtActivity.py:868 msgid "Metric coordinates" msgstr "Metriske koordinater" -#: TurtleArt/tabasics.py:902 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181 +#: TurtleArt/tabasics.py:915 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:183 msgid "string value" msgstr "streng-værdi" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:167 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:169 msgid "description" msgstr "beskrivelse" -#: TurtleArt/talogo.py:572 +#: TurtleArt/talogo.py:573 msgid "I don't know how to" msgstr "Jeg ved ikke hvordan" @@ -2220,20 +2293,20 @@ msgstr "Jeg ved ikke hvordan" msgid "Username:" msgstr "Brugernavn:" -#: TurtleArt/tabasics.py:470 +#: TurtleArt/tabasics.py:475 msgid "starts filled polygon (used with end fill block)" msgstr "starter fyldt polygon (anvendes med slut på fyld af blok)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:835 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 msgid "presentation template: select four Journal objects" msgstr "skabelon for præsentation: vælg fire Journal-objekter" -#: TurtleArtActivity.py:608 TurtleArtActivity.py:637 TurtleArtActivity.py:750 -#: TurtleArtActivity.py:820 turtleblocks.py:407 +#: TurtleArtActivity.py:647 TurtleArtActivity.py:675 TurtleArtActivity.py:792 +#: TurtleArtActivity.py:862 turtleblocks.py:430 msgid "View" msgstr "Vis" -#: TurtleArt/tabasics.py:374 +#: TurtleArt/tabasics.py:379 msgid "sets gray level of the line drawn by the turtle" msgstr "sætter niveauet af gråtone for linjen som tegnes af skildpadden" @@ -2241,68 +2314,68 @@ msgstr "sætter niveauet af gråtone for linjen som tegnes af skildpadden" msgid "Password:" msgstr "Adgangskode:" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:415 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:419 msgid "turtle sees" msgstr "skildpadden ser" -#: TurtleArt/tabasics.py:872 +#: TurtleArt/tabasics.py:883 msgid "stop action" msgstr "stop handling" -#: TurtleArt/tabasics.py:515 +#: TurtleArt/tabasics.py:522 msgid "green" msgstr "grøn" -#: TurtleArt/tabasics.py:313 TurtleArt/tabasics.py:327 -#: TurtleArt/tabasics.py:397 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1089 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1094 +#: TurtleArt/tabasics.py:318 TurtleArt/tabasics.py:332 +#: TurtleArt/tabasics.py:402 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1128 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1133 msgid "shade" msgstr "skygge" -#: TurtleArt/tabasics.py:317 TurtleArt/tabasics.py:331 +#: TurtleArt/tabasics.py:322 TurtleArt/tabasics.py:336 msgid "fills the background with (color, shade)" msgstr "udfylder baggrunden med (farve, skygge)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:227 msgid "save picture" msgstr "gem billede" #: plugins/audio_sensors/audio_sensors.py:119 #: plugins/audio_sensors/audio_sensors.py:127 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:296 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:298 msgid "pitch" msgstr "tone" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:323 msgid "returns 1 if mouse button is pressed" msgstr "returnerer 1 hvis museknap er trykket" -#: TurtleArtActivity.py:513 TurtleArtActivity.py:672 TurtleArtActivity.py:828 +#: TurtleArtActivity.py:544 TurtleArtActivity.py:710 TurtleArtActivity.py:870 msgid "Rescale coordinates up" msgstr "Gentag opskalering af koordinater" -#: TurtleArt/tabasics.py:419 +#: TurtleArt/tabasics.py:424 msgid "pen up" msgstr "pen oppe" -#: TurtleArt/tabasics.py:511 +#: TurtleArt/tabasics.py:518 msgid "orange" msgstr "orange" -#: TurtleArt/tabasics.py:793 +#: TurtleArt/tabasics.py:804 msgid "pauses program execution a specified number of seconds" msgstr "sætter programafviklingen på pause for et angivet antal sekunder" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:446 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:452 msgid "pushes value onto FILO (first-in last-out heap)" msgstr "skubber værdi op på FILO (først-in sidst-ud dynge)" -#: TurtleArt/tabasics.py:1059 +#: TurtleArt/tabasics.py:1074 msgid "clear all" msgstr "ryd alt" -#: TurtleArt/tabasics.py:822 TurtleArt/tabasics.py:835 +#: TurtleArt/tabasics.py:833 TurtleArt/tabasics.py:846 msgid "then" msgstr "så" @@ -2310,44 +2383,45 @@ msgstr "så" msgid "Register" msgstr "Registrér" -#: TurtleArt/tabasics.py:751 +#: TurtleArt/tabasics.py:760 msgid "not" msgstr "ikke" -#: TurtleArt/tabasics.py:839 TurtleArt/tabasics.py:847 +#: TurtleArt/tabasics.py:850 TurtleArt/tabasics.py:858 msgid "if then else" msgstr "hvis så ellers" -#: TurtleArt/tabasics.py:875 +#: TurtleArt/tabasics.py:886 msgid "stops current action" msgstr "stopper nuværende handling" -#: TurtleArt/tabasics.py:185 +#: TurtleArt/tabasics.py:187 msgid "turns turtle clockwise (angle in degrees)" msgstr "drejer skildpadde med uret (vinkel i grader)" -#: TurtleArt/tabasics.py:410 +#: TurtleArt/tabasics.py:415 msgid "holds current gray level (can be used in place of a number block)" msgstr "holder aktuelt niveau af grå (kan anvendes i stedet for en talblok)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 msgid "xcor of left of screen" msgstr "xkor for venstre del af skærmen" -#: turtleblocks.py:402 +#: turtleblocks.py:425 msgid "Reset block size" msgstr "Nulstil blokstørrelse" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:670 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758 +#: TurtleArt/tabasics.py:122 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:676 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:794 msgid "turtle" msgstr "skildpadde" -#: TurtleArt/tapalette.py:97 +#: TurtleArt/tapalette.py:98 msgid "displays next palette" msgstr "viser næste palette" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:812 msgid "hide blocks" msgstr "skjul blokke" @@ -2356,35 +2430,35 @@ msgstr "skjul blokke" msgid "light level detected by camera" msgstr "lysniveau opfanget af kamera" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:554 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560 msgid "Python int operator" msgstr "Python int-operator" -#: TurtleArt/tabasics.py:732 +#: TurtleArt/tabasics.py:741 msgid "logical less-than operator" msgstr "logisk mindre-end operator" -#: TurtleArt/tabasics.py:1055 +#: TurtleArt/tabasics.py:1070 msgid "restore all blocks from trash" msgstr "genskab alle blokke fra papirkurv" -#: turtleblocks.py:382 +#: turtleblocks.py:404 msgid "Save" msgstr "Gem" -#: TurtleArt/tabasics.py:929 +#: TurtleArt/tabasics.py:942 msgid "store in box 1" msgstr "gem i boks 1" -#: TurtleArt/tabasics.py:943 +#: TurtleArt/tabasics.py:956 msgid "store in box 2" msgstr "gem i boks 2" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:793 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831 msgid "hides the Sugar toolbars" msgstr "skjuler Sugar-værktøjsbjælkerne" -#: TurtleArt/tabasics.py:241 +#: TurtleArt/tabasics.py:243 msgid "" "holds current x-coordinate value of the turtle (can be used in place of a " "number block)" @@ -2392,24 +2466,24 @@ msgstr "" "holder aktuel x-koordinat-værdi for skildpadden (kan anvendes i stedet for " "en talblok)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:536 msgid "print" msgstr "udskriv" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345 msgid "returns mouse x coordinate" msgstr "returnerer musens x-koordinat" -#: TurtleArt/tabasics.py:510 +#: TurtleArt/tabasics.py:517 msgid "red" msgstr "rød" -#: TurtleArtActivity.py:200 TurtleArtActivity.py:781 TurtleArtActivity.py:964 -#: TurtleArtActivity.py:1000 turtleblocks.py:386 +#: TurtleArtActivity.py:224 TurtleArtActivity.py:823 TurtleArtActivity.py:1006 +#: TurtleArtActivity.py:1042 turtleblocks.py:408 msgid "Save as Logo" msgstr "Gem som Logo" -#: TurtleArt/tabasics.py:347 +#: TurtleArt/tabasics.py:352 msgid "sets color of the line drawn by the turtle" msgstr "sætter farve for linjen som tegnes af skildpadden" @@ -2426,29 +2500,30 @@ msgstr "Aktivér samarbejde" #: plugins/audio_sensors/audio_sensors.py:75 #: plugins/camera_sensor/camera_sensor.py:63 #: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:313 msgid "Palette of sensor blocks" msgstr "Palette af sensor-blokke" -#: TurtleArtActivity.py:785 TurtleArtActivity.py:988 TurtleArtActivity.py:1010 +#: TurtleArtActivity.py:827 TurtleArtActivity.py:1030 +#: TurtleArtActivity.py:1052 msgid "Load plugin" msgstr "Indlæs udvidelsesmodul" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334 msgid "returns True if mouse button is pressed" msgstr "returnerer Sand, hvis der trykkes på museknap" -#: TurtleArt/tabasics.py:707 +#: TurtleArt/tabasics.py:716 msgid "number" msgstr "tal" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:359 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363 msgid "query keyboard" msgstr "forespørg tastatur" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:714 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:926 msgid "top" msgstr "top" @@ -2456,7 +2531,7 @@ msgstr "top" msgid "Submit to Web" msgstr "Indsend til nettet" -#: TurtleArtActivity.py:664 TurtleArtActivity.py:822 turtleblocks.py:392 +#: TurtleArtActivity.py:702 TurtleArtActivity.py:864 turtleblocks.py:414 msgid "Cartesian coordinates" msgstr "Cartesianske koordinater" @@ -2464,45 +2539,45 @@ msgstr "Cartesianske koordinater" msgid "Nickname" msgstr "Kaldenavn" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:215 msgid "set scale" msgstr "indstil skalering" -#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:2156 -#: TurtleArtActivity.py:775 +#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:2241 +#: TurtleArtActivity.py:817 msgid "Share selected blocks" msgstr "Del valgte blokke" -#: TurtleArt/tabasics.py:520 +#: TurtleArt/tabasics.py:527 msgid "white" msgstr "hvid" -#: TurtleArt/tabasics.py:892 +#: TurtleArt/tabasics.py:905 msgid "connects action to toolbar run buttons" msgstr "forbinder handling til knapper på værktøjsbjælke" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:428 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:432 msgid "elapsed time (in seconds) since program started" msgstr "forløben tid (i sekunder) siden program startede" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:297 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299 msgid "amplitude" msgstr "amplitude" -#: TurtleArt/tawindow.py:1634 TurtleArt/tawindow.py:1673 +#: TurtleArt/tawindow.py:1718 TurtleArt/tawindow.py:1757 #: gnome_plugins/uploader_plugin.py:144 msgid "Cancel" msgstr "Annullér" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:899 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:937 msgid "the canvas height" msgstr "højde på lærred" -#: TurtleArt/tabasics.py:619 +#: TurtleArt/tabasics.py:628 msgid "minus" msgstr "minus" -#: TurtleArt/tabasics.py:760 TurtleArt/tabasics.py:763 +#: TurtleArt/tabasics.py:769 TurtleArt/tabasics.py:772 msgid "and" msgstr "og" @@ -2510,17 +2585,17 @@ msgstr "og" msgid "top of a collapsible stack" msgstr "toppen af sammenfoldelig stak" -#: TurtleArt/talogo.py:631 +#: TurtleArt/talogo.py:632 msgid "as input" msgstr "som inddata" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:605 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:622 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:638 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:611 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:628 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644 msgid "Python block" msgstr "Python-blok" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:255 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257 msgid "media wait" msgstr "medie vent" @@ -2529,29 +2604,25 @@ msgstr "medie vent" msgid "acceleration" msgstr "acceleration" -#: TurtleArt/tabasics.py:491 +#: TurtleArt/tabasics.py:496 msgid "holds current pen size (can be used in place of a number block)" msgstr "holder aktuel penstørrelse (kan anvendes i stedet for en talblok)" -#: TurtleArt/tabasics.py:343 -msgid "set color" -msgstr "indstil farve" - -#: TurtleArt/tabasics.py:691 +#: TurtleArt/tabasics.py:700 msgid "min" msgstr "min" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:735 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:759 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 msgid "loads a block" msgstr "indlæser en blok" -#: TurtleArt/tabasics.py:308 +#: TurtleArt/tabasics.py:313 msgid "Palette of pen commands" msgstr "Palette af kommandoer for pen" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:459 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:465 msgid "shows values in FILO (first-in last-out heap)" msgstr "viser værdier i FILO (først-ind sidst-ud dynge)" @@ -2559,108 +2630,108 @@ msgstr "viser værdier i FILO (først-ind sidst-ud dynge)" msgid "do-while-True operator that uses boolean operators from Numbers palette" msgstr "gør-mens-Sand operator som anvendes boolske operatorer fra Talpalette" -#: turtleblocks.py:389 +#: turtleblocks.py:411 msgid "File" msgstr "Fil" -#: TurtleArt/tabasics.py:754 +#: TurtleArt/tabasics.py:763 msgid "logical NOT operator" msgstr "logisk IKKE operator" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:867 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:905 msgid "ycor of bottom of screen" msgstr "ykor for bunden af skærm" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:828 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:866 msgid "presentation template: select Journal object (with description)" msgstr "skabelon for præsentation: vælg Journal-objekt (med beskrivelse)" -#: TurtleArt/tabasics.py:601 +#: TurtleArt/tabasics.py:610 msgid "Palette of numeric operators" msgstr "Palette af numeriske operatorer" -#: TurtleArt/tabasics.py:633 +#: TurtleArt/tabasics.py:642 msgid "multiply" msgstr "gange" -#: TurtleArt/tabasics.py:800 +#: TurtleArt/tabasics.py:811 msgid "forever" msgstr "for evigt" -#: TurtleArtActivity.py:1302 +#: TurtleArtActivity.py:1350 #, python-format msgid "Plugin %s already installed." msgstr "Udvidelsesmodulet %s er allerede installeret." -#: TurtleArt/tabasics.py:361 +#: TurtleArt/tabasics.py:366 msgid "sets shade of the line drawn by the turtle" msgstr "set skygge for linjen som tegnes af skildpadden" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:288 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:290 msgid "speaks text" msgstr "læser tekst op" -#: TurtleArtActivity.py:265 +#: TurtleArtActivity.py:289 msgid "snapshot" msgstr "øjebliksbillede" -#: TurtleArt/tabasics.py:156 +#: TurtleArt/tabasics.py:158 msgid "clean" msgstr "rens" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:849 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:880 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887 msgid "presentation template: select two Journal objects" msgstr "skabelon for præsentation: vælg to Journal-objekter" -#: TurtleArtActivity.py:675 TurtleArtActivity.py:830 turtleblocks.py:398 +#: TurtleArtActivity.py:713 TurtleArtActivity.py:872 turtleblocks.py:421 msgid "Grow blocks" msgstr "Øg blokke" -#: TurtleArtActivity.py:661 TurtleArtActivity.py:821 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:791 +#: TurtleArtActivity.py:699 TurtleArtActivity.py:863 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:829 msgid "Fullscreen" msgstr "Fuldskærm" -#: turtleblocks.py:275 +#: turtleblocks.py:297 msgid "File not found" msgstr "Fil blev ikke fundet" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 msgid "show" msgstr "vis" -#: TurtleArt/tabasics.py:899 TurtleArt/tabasics.py:900 -#: TurtleArt/tabasics.py:901 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:178 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:179 +#: TurtleArt/tabasics.py:912 TurtleArt/tabasics.py:913 +#: TurtleArt/tabasics.py:914 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:201 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:203 msgid "text" msgstr "tekst" -#: TurtleArt/tabasics.py:691 +#: TurtleArt/tabasics.py:700 msgid "random" msgstr "tilfældig" -#: TurtleArt/tabasics.py:719 +#: TurtleArt/tabasics.py:728 msgid "logical greater-than operator" msgstr "logisk større-end operator" -#: TurtleArt/tabasics.py:173 +#: TurtleArt/tabasics.py:175 msgid "turns turtle counterclockwise (angle in degrees)" msgstr "drejer skildpadde mod uret (vinkel i grader)" -#: TurtleArt/tabasics.py:521 +#: TurtleArt/tabasics.py:528 msgid "black" msgstr "sort" -#: TurtleArt/tabasics.py:684 +#: TurtleArt/tabasics.py:693 msgid "calculates square root" msgstr "beregner kvadratrod" -#: TurtleArt/tabasics.py:255 +#: TurtleArt/tabasics.py:257 msgid "" "holds current y-coordinate value of the turtle (can be used in place of a " "number block)" @@ -2668,11 +2739,11 @@ msgstr "" "holder aktuel y-koordinat-værdi for skildpadde (kan anvendes i stedet for en " "talblok)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:338 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:342 msgid "mouse x" msgstr "mus x" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352 msgid "mouse y" msgstr "mus y" @@ -2680,27 +2751,27 @@ msgstr "mus y" msgid "stop" msgstr "stop" -#: TurtleArt/tabasics.py:716 +#: TurtleArt/tabasics.py:725 msgid "greater than" msgstr "større end" -#: TurtleArt/tabasics.py:240 TurtleArt/tawindow.py:4247 +#: TurtleArt/tabasics.py:242 TurtleArt/tawindow.py:4334 msgid "xcor" msgstr "x-kor" -#: TurtleArtActivity.py:759 turtleblocks.py:437 util/helpbutton.py:44 +#: TurtleArtActivity.py:801 turtleblocks.py:460 util/helpbutton.py:44 msgid "Help" msgstr "Hjælp" -#: turtleblocks.py:477 +#: turtleblocks.py:500 msgid "Save project?" msgstr "Gem projekt?" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:680 msgid "chooses which turtle to command" msgstr "vælger skildpadden som skal kommanderes" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:942 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:980 msgid "right x" msgstr "højre x" @@ -2709,32 +2780,32 @@ msgstr "højre x" msgid "light level detected by light sensor" msgstr "lysniveau registreret af lyssensor" -#: TurtleArtActivity.py:1203 TurtleArtActivity.py:1208 -#: TurtleArtActivity.py:1288 +#: TurtleArtActivity.py:1251 TurtleArtActivity.py:1256 +#: TurtleArtActivity.py:1336 msgid "Plugin could not be installed." msgstr "Udvidelsesmodulet kunne ikke installeres." -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:368 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:372 msgid "keyboard" msgstr "tastatur" -#: TurtleArt/tabasics.py:195 +#: TurtleArt/tabasics.py:197 msgid "arc" msgstr "arc" -#: TurtleArt/tabasics.py:195 +#: TurtleArt/tabasics.py:197 msgid "radius" msgstr "radius" -#: TurtleArtActivity.py:666 TurtleArtActivity.py:824 turtleblocks.py:394 +#: TurtleArtActivity.py:704 TurtleArtActivity.py:866 turtleblocks.py:416 msgid "Polar coordinates" msgstr "Polære koordinater" -#: TurtleArt/tabasics.py:357 +#: TurtleArt/tabasics.py:362 msgid "set shade" msgstr "indstil skygge" -#: TurtleArt/tabasics.py:764 +#: TurtleArt/tabasics.py:773 msgid "logical AND operator" msgstr "logisk AND operator" @@ -2746,23 +2817,19 @@ msgstr "" "Du skal have en konto på http://turtleartsite.sugarlabs.org for at kunne " "sende dit projekt." -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 -msgid "palette" -msgstr "palet" - -#: TurtleArtActivity.py:753 TurtleArtActivity.py:1037 turtleblocks.py:429 +#: TurtleArtActivity.py:795 TurtleArtActivity.py:1079 turtleblocks.py:452 msgid "Run" msgstr "Kør" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:462 msgid "show heap" msgstr "vis hób" -#: TurtleArt/tabasics.py:230 +#: TurtleArt/tabasics.py:232 msgid "sets the heading of the turtle (0 is towards the top of the screen.)" msgstr "sætter retningen for skildpadden (0 er mod toppen af skærmen.)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:759 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795 msgid "selects a palette" msgstr "vælger en palet" @@ -2776,19 +2843,19 @@ msgid "Title:" msgstr "Titel:" #: plugins/camera_sensor/camera_sensor.py:67 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:125 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127 msgid "Palette of media objects" msgstr "Palette af medieobjekter" -#: TurtleArtActivity.py:653 +#: TurtleArtActivity.py:691 msgid "Restore blocks from trash" msgstr "Genskab blokke fra papirkurv" -#: TurtleArt/tabasics.py:884 +#: TurtleArt/tabasics.py:897 msgid "Palette of variable blocks" msgstr "Palette med forskellige blokke" -#: TurtleArt/tabasics.py:708 +#: TurtleArt/tabasics.py:717 msgid "used as numeric input in mathematic operators" msgstr "anvendes som numerisk input i matematiske operatorer" @@ -2802,7 +2869,7 @@ msgstr "Overfør" msgid "Server" msgstr "Server" -#: TurtleArt/tabasics.py:960 +#: TurtleArt/tabasics.py:973 msgid "Variable 1 (numeric value)" msgstr "Variabel 1 (numerisk værdi)" @@ -2810,68 +2877,68 @@ msgstr "Variabel 1 (numerisk værdi)" msgid "Neighborhood" msgstr "Nabolag" -#: TurtleArt/tabasics.py:611 +#: TurtleArt/tabasics.py:620 msgid "adds two alphanumeric inputs" msgstr "tilføjer to alfanumeriske input" -#: TurtleArt/tabasics.py:740 +#: TurtleArt/tabasics.py:749 msgid "equal" msgstr "lig med" -#: TurtleArt/tabasics.py:835 +#: TurtleArt/tabasics.py:846 msgid "else" msgstr "ellers" -#: TurtleArt/talogo.py:630 +#: TurtleArt/talogo.py:631 msgid "doesn't like" msgstr "kan ikke lide" -#: turtleblocks.py:475 +#: turtleblocks.py:498 msgid "You have unsaved work. Would you like to save before quitting?" msgstr "Du har arbejde som ikke er gemt. Vil du gemme før du afslutter?" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:785 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:823 msgid "restores hidden blocks" msgstr "genskaber skjulte blokke" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:720 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:743 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:767 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779 msgid "load" msgstr "indlæs" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:265 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:267 msgid "stop video or audio" msgstr "stop video eller lyd" -#: TurtleArt/tabasics.py:422 +#: TurtleArt/tabasics.py:427 msgid "Turtle will not draw when moved." msgstr "Skildpadde vil ikke tegne når den flyttes." #. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: pop removes a new item from the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489 msgid "pop" msgstr "pop" -#: TurtleArt/tabasics.py:490 +#: TurtleArt/tabasics.py:495 msgid "pen size" msgstr "størrelse pen" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:706 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:732 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742 msgid "turtle shell" msgstr "skildpaddeskjold" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:300 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302 msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)" msgstr "afspiller en sinusbølge ved frekvens, dybde og varighed (i sekunder)" -#: TurtleArt/tabasics.py:680 +#: TurtleArt/tabasics.py:689 msgid "√" msgstr "√" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:287 msgid "speak" msgstr "tal" @@ -2879,50 +2946,50 @@ msgstr "tal" msgid "read value from RFID device" msgstr "læs værdi fra RFID-enhed" -#: TurtleArt/tabasics.py:199 +#: TurtleArt/tabasics.py:201 msgid "moves turtle along an arc" msgstr "flytter skildpadden langs en arc" -#: TurtleArt/tabasics.py:744 +#: TurtleArt/tabasics.py:753 msgid "logical equal-to operator" msgstr "logisk lig-med operator" -#: TurtleArt/tabasics.py:508 +#: TurtleArt/tabasics.py:515 msgid "Palette of pen colors" msgstr "Palette af farver for pen" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274 msgid "pause video or audio" msgstr "sæt video eller lyd på pause" -#: TurtleArt/tabasics.py:934 +#: TurtleArt/tabasics.py:947 msgid "stores numeric value in Variable 1" msgstr "gemmer numerisk værdi i Variabel 1" -#: TurtleArt/tabasics.py:948 +#: TurtleArt/tabasics.py:961 msgid "stores numeric value in Variable 2" msgstr "gemmer numerisk værdi i Variabel 2" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:698 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:707 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:743 msgid "put a custom 'shell' on the turtle" msgstr "putter et brugerdefineret 'skjold' på skildpadden" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:327 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:320 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:331 msgid "button down" msgstr "knap ned" -#: TurtleArt/tabasics.py:146 +#: TurtleArt/tabasics.py:148 msgid "moves turtle backward" msgstr "flytter skildpadden baglæns" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:891 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:929 msgid "ycor of top of screen" msgstr "ykor for toppen af skærm" -#: TurtleArt/talogo.py:384 TurtleArtActivity.py:383 TurtleArtActivity.py:756 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1428 +#: TurtleArt/talogo.py:384 TurtleArtActivity.py:409 TurtleArtActivity.py:798 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1469 msgid "Show blocks" msgstr "Vis blokke" @@ -2938,23 +3005,23 @@ msgstr "gem" msgid "Colors" msgstr "Farver" -#: TurtleArt/tabasics.py:457 +#: TurtleArt/tabasics.py:462 msgid "sets size of the line drawn by the turtle" msgstr "sætter størrelse på linjen som tegnes af skildpadden" -#: TurtleArtActivity.py:980 turtleblocks.py:380 +#: TurtleArtActivity.py:1022 turtleblocks.py:402 msgid "Open" msgstr "Åbn" -#: TurtleArt/tawindow.py:1102 TurtleArt/tawindow.py:1103 +#: TurtleArt/tawindow.py:1178 TurtleArt/tawindow.py:1179 msgid "orientation" msgstr "retning" -#: TurtleArt/tabasics.py:254 TurtleArt/tawindow.py:4248 +#: TurtleArt/tabasics.py:256 TurtleArt/tawindow.py:4335 msgid "ycor" msgstr "y-kor" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:579 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585 msgid "" "a programmable block: used to add advanced multi-variable math equations, e." "g., sqrt(x*x+y*y)" @@ -2962,47 +3029,47 @@ msgstr "" "en blok som kan programmeres: anvendes til at føje avancerede matematiske " "ligninger med flere variabler, f.eks., sqrt(x*x+y*y)" -#: TurtleArt/tabasics.py:822 TurtleArt/tabasics.py:835 +#: TurtleArt/tabasics.py:833 TurtleArt/tabasics.py:846 msgid "if" msgstr "hvis" -#: TurtleArt/tabasics.py:214 TurtleArt/tabasics.py:292 +#: TurtleArt/tabasics.py:216 TurtleArt/tabasics.py:295 msgid "" "moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." msgstr "" "flytter skildpadden til position xkor, ykor; (0, 0) er midten af skærmen." -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:561 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:575 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:589 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:567 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:581 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595 msgid "Python" msgstr "Python" -#: TurtleArtActivity.py:760 turtleblocks.py:432 +#: TurtleArtActivity.py:802 turtleblocks.py:455 msgid "Stop" msgstr "Stop" -#: TurtleArt/tabasics.py:1014 TurtleArt/tabasics.py:1034 +#: TurtleArt/tabasics.py:1027 TurtleArt/tabasics.py:1047 msgid "action 2" msgstr "handling 2" -#: TurtleArt/tabasics.py:1005 TurtleArt/tabasics.py:1024 +#: TurtleArt/tabasics.py:1018 TurtleArt/tabasics.py:1037 msgid "action 1" msgstr "handling 1" -#: TurtleArt/tabasics.py:479 +#: TurtleArt/tabasics.py:484 msgid "end fill" msgstr "slut udfyld" -#: TurtleArtActivity.py:649 TurtleArtActivity.py:803 turtleblocks.py:410 +#: TurtleArtActivity.py:687 TurtleArtActivity.py:845 turtleblocks.py:433 msgid "Copy" msgstr "Kopiér" -#: TurtleArtActivity.py:651 TurtleArtActivity.py:804 turtleblocks.py:411 +#: TurtleArtActivity.py:689 TurtleArtActivity.py:846 turtleblocks.py:434 msgid "Paste" msgstr "Indsæt" -#: TurtleArt/talogo.py:512 +#: TurtleArt/talogo.py:513 msgid "did not output to" msgstr "gav ikke uddata til" @@ -3014,44 +3081,44 @@ msgstr "Aktiviteter" msgid "Upload to Web" msgstr "Send til nettet" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:469 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:475 msgid "empty heap" msgstr "tom hób" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:487 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:493 msgid "pops value off FILO (first-in last-out heap)" msgstr "fjerner en værdi fra FILO (først-in sidst-ud hób)" -#: TurtleArtActivity.py:752 TurtleArtActivity.py:1035 turtleblocks.py:428 +#: TurtleArtActivity.py:794 TurtleArtActivity.py:1077 turtleblocks.py:451 msgid "Clean" msgstr "Rens" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:767 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:805 msgid "Palette of presentation templates" msgstr "Palette af skabeloner for præsentation" -#: TurtleArt/tabasics.py:195 +#: TurtleArt/tabasics.py:197 msgid "angle" msgstr "vinkel" -#: TurtleArt/tabasics.py:658 +#: TurtleArt/tabasics.py:667 msgid "identity" msgstr "identitet" -#: TurtleArtActivity.py:641 TurtleArtActivity.py:748 TurtleArtActivity.py:777 -#: TurtleArtActivity.py:779 TurtleArtActivity.py:956 +#: TurtleArtActivity.py:679 TurtleArtActivity.py:790 TurtleArtActivity.py:819 +#: TurtleArtActivity.py:821 TurtleArtActivity.py:998 msgid "Save/Load" msgstr "Gem/Indlæs" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:933 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:971 msgid "top y" msgstr "øverste y" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:143 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:145 msgid "audio" msgstr "lyd" -#: turtleblocks.py:425 +#: turtleblocks.py:448 msgid "Tools" msgstr "Værktøjer" @@ -3059,16 +3126,16 @@ msgstr "Værktøjer" msgid "Port" msgstr "Port" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:521 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527 msgid "comment" msgstr "kommentar" -#: TurtleArt/tabasics.py:622 +#: TurtleArt/tabasics.py:631 msgid "subtracts bottom numeric input from top numeric input" msgstr "fratrækker nederste numeriske input fra øverste numeriske input" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272 msgid "media pause" msgstr "medie-pause" @@ -3076,15 +3143,15 @@ msgstr "medie-pause" msgid "push destination rgb value to heap" msgstr "skub målværdi for rgb til hób" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365 msgid "query for keyboard input (results stored in keyboard block)" msgstr "forespørger tastatur-input (resultater lagres i tastatur-blok)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:654 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660 msgid "Cartesian" msgstr "Kartesisk" -#: TurtleArt/tabasics.py:159 +#: TurtleArt/tabasics.py:161 msgid "clears the screen and reset the turtle" msgstr "rydder skærmen og nulstiller skildpadden" @@ -3093,49 +3160,49 @@ msgstr "rydder skærmen og nulstiller skildpadden" msgid "raw microphone input signal" msgstr "råt signal fra mikrofon-input" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:421 msgid "returns the color that the turtle \"sees\"" msgstr "returnerer farven som skildpadden \"ser\"" -#: TurtleArt/tabasics.py:1027 +#: TurtleArt/tabasics.py:1040 msgid "invokes Action 1 stack" msgstr "kalder Handling 1 stak" -#: TurtleArt/tabasics.py:124 +#: TurtleArt/tabasics.py:126 msgid "Palette of turtle commands" msgstr "Palette af kommandoer for skildpadde" -#: TurtleArt/tabasics.py:804 +#: TurtleArt/tabasics.py:815 msgid "loops forever" msgstr "kører i løkke for evigt" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:200 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:202 msgid "show aligned" msgstr "vis sammenstillet" -#: TurtleArtActivity.py:1303 +#: TurtleArtActivity.py:1351 #, python-format msgid "Do you want to reinstall %s?" msgstr "Ønsker du at geninstallere %s?" -#: TurtleArtActivity.py:782 TurtleArtActivity.py:983 TurtleArtActivity.py:1005 -#: turtleblocks.py:381 +#: TurtleArtActivity.py:824 TurtleArtActivity.py:1025 +#: TurtleArtActivity.py:1047 turtleblocks.py:403 msgid "Load project" msgstr "Indlæs projekt" -#: TurtleArtActivity.py:635 TurtleArtActivity.py:751 +#: TurtleArtActivity.py:673 TurtleArtActivity.py:793 msgid "Project" msgstr "Projekt" -#: turtleblocks.py:431 +#: turtleblocks.py:454 msgid "Debug" msgstr "Fejlsøg" -#: TurtleArtActivity.py:318 TurtleArtActivity.py:681 TurtleArtActivity.py:832 +#: TurtleArtActivity.py:342 TurtleArtActivity.py:719 TurtleArtActivity.py:874 msgid "Turn off hover help" msgstr "Slå svæve-hjælp fra" -#: TurtleArt/tabasics.py:668 TurtleArt/tabasics.py:669 +#: TurtleArt/tabasics.py:677 TurtleArt/tabasics.py:678 msgid "mod" msgstr "mod" @@ -3143,16 +3210,16 @@ msgstr "mod" msgid "Password" msgstr "Adgangskode" -#: TurtleArt/tabasics.py:865 +#: TurtleArt/tabasics.py:876 msgid "vertical space" msgstr "lodret afstand" -#: TurtleArtActivity.py:1284 +#: TurtleArtActivity.py:1332 msgid "Please restart Turtle Art in order to use the plugin." msgstr "" "Genstart venligst Skildpadde-kunst for at gøre brug af udvidelsesmodulet." -#: TurtleArt/tabasics.py:481 +#: TurtleArt/tabasics.py:486 msgid "completes filled polygon (used with start fill block)" msgstr "fuldfører udfyldt polygon (anvendes med start fyld blok)" @@ -3160,72 +3227,72 @@ msgstr "fuldfører udfyldt polygon (anvendes med start fyld blok)" msgid "Share" msgstr "Del" -#: TurtleArt/tabasics.py:728 +#: TurtleArt/tabasics.py:737 msgid "less than" msgstr "mindre end" -#: TurtleArt/tabasics.py:681 +#: TurtleArt/tabasics.py:690 msgid "square root" msgstr "kvadratrod" -#: turtleblocks.py:396 +#: turtleblocks.py:419 msgid "Rescale coordinates" msgstr "Genskalér koordinater" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:821 msgid "show blocks" msgstr "vis blokke" -#: turtleblocks.py:388 +#: turtleblocks.py:410 msgid "Quit" msgstr "Afslut" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:169 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:171 msgid "Sugar Journal description field" msgstr "Beskrivelsesfelt for Sugar Journal" -#: TurtleArt/tabasics.py:371 +#: TurtleArt/tabasics.py:376 msgid "set gray" msgstr "sætter grå" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:806 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:844 msgid "presentation bulleted list" msgstr "punktopstilling i præsentation" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:297 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299 msgid "duration" msgstr "varighed" -#: turtleblocks.py:375 +#: turtleblocks.py:397 msgid "New" msgstr "Ny" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:523 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 msgid "places a comment in your code" msgstr "placerer en kommentar i din kode" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:408 msgid "read pixel" msgstr "læser billedpunkt" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 msgid "scale" msgstr "skalér" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:864 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902 msgid "bottom" msgstr "bund" -#: TurtleArt/tabasics.py:518 +#: TurtleArt/tabasics.py:525 msgid "purple" msgstr "lilla" -#: TurtleArtActivity.py:509 +#: TurtleArtActivity.py:535 msgid "Rescale coordinates down" msgstr "Gentag nedskalering af koordinater" #: TurtleArt/tautils.py:593 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:712 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:748 msgid "click to open" msgstr "klik for at åbne" @@ -3242,15 +3309,15 @@ msgstr "Konfiguration" msgid "Description:" msgstr "Beskrivelse:" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:132 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:134 msgid "journal" msgstr "journal" -#: TurtleArt/tabasics.py:1049 +#: TurtleArt/tabasics.py:1064 msgid "empty trash" msgstr "tøm papirkurv" -#: TurtleArt/tabasics.py:434 +#: TurtleArt/tabasics.py:439 msgid "Turtle will draw when moved." msgstr "Skildpadde vil tegne når den flyttes." @@ -3258,56 +3325,57 @@ msgstr "Skildpadde vil tegne når den flyttes." msgid "Load..." msgstr "Indlæs..." -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:145 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:147 msgid "Sugar Journal audio object" msgstr "Sugar Journal lydobjekt" -#: TurtleArt/talogo.py:374 TurtleArtActivity.py:755 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1437 +#: TurtleArt/talogo.py:374 TurtleArt/tawindow.py:1493 TurtleArtActivity.py:797 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1478 msgid "Stop turtle" msgstr "Stop skildpadde" -#: turtleblocks.py:433 +#: turtleblocks.py:456 msgid "Turtle" msgstr "Skildpadde" -#: TurtleArt/tapalette.py:98 +#: TurtleArt/tapalette.py:99 msgid "changes the orientation of the palette of blocks" msgstr "ændrer retningen for paletten af blokke" -#: TurtleArt/tabasics.py:976 TurtleArt/tawindow.py:4581 +#: TurtleArt/tabasics.py:989 TurtleArt/tawindow.py:4676 msgid "store in" msgstr "gem i" -#: TurtleArt/talogo.py:388 TurtleArtActivity.py:387 TurtleArtActivity.py:1041 +#: TurtleArt/talogo.py:388 TurtleArtActivity.py:413 TurtleArtActivity.py:1083 msgid "Hide blocks" msgstr "Skjul blokke" -#: TurtleArtActivity.py:786 TurtleArtActivity.py:991 TurtleArtActivity.py:1013 +#: TurtleArtActivity.py:828 TurtleArtActivity.py:1033 +#: TurtleArtActivity.py:1055 msgid "Load Python block" msgstr "Indlæs Python-blok" -#: TurtleArt/tabasics.py:607 +#: TurtleArt/tabasics.py:616 msgid "plus" msgstr "plus" -#: TurtleArt/tabasics.py:771 TurtleArt/tabasics.py:774 +#: TurtleArt/tabasics.py:780 TurtleArt/tabasics.py:783 msgid "or" msgstr "eller" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:814 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:852 msgid "presentation template: list of bullets" msgstr "skabelon for præsentation: liste med former for punktopstilling" -#: TurtleArt/tabasics.py:660 +#: TurtleArt/tabasics.py:669 msgid "identity operator used for extending blocks" msgstr "identitetsoperator til brug for udvidelse af blokke" -#: TurtleArtActivity.py:678 TurtleArtActivity.py:831 turtleblocks.py:400 +#: TurtleArtActivity.py:716 TurtleArtActivity.py:873 turtleblocks.py:423 msgid "Shrink blocks" msgstr "Mindsk blokke" -#: TurtleArt/tabasics.py:269 +#: TurtleArt/tabasics.py:271 msgid "" "holds current heading value of the turtle (can be used in place of a number " "block)" @@ -3315,56 +3383,56 @@ msgstr "" "holder aktuel hovedværdi for skildpadde (kan anvendes i stedet for en " "talblok)" -#: TurtleArt/tawindow.py:4362 +#: TurtleArt/tawindow.py:4457 msgid "image" msgstr "billede" -#: TurtleArt/tabasics.py:695 +#: TurtleArt/tabasics.py:704 msgid "returns random number between minimum (top) and maximum (bottom) values" msgstr "" "returnerer et tilfældigt tal mellem værdier for minimum (top) og maksimum " "(bund)" -#: TurtleArt/tabasics.py:385 +#: TurtleArt/tabasics.py:390 msgid "holds current pen color (can be used in place of a number block)" msgstr "holder aktuel farve for pen (kan anvendes i stedet for en talblok)" -#: TurtleArtActivity.py:335 turtleblocks.py:419 +#: TurtleArtActivity.py:361 turtleblocks.py:442 msgid "Show palette" msgstr "Vis palette" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:228 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:230 msgid "saves a picture to the Sugar Journal" msgstr "gemmer et billede til Sugar Journal" -#: TurtleArtActivity.py:273 TurtleArtActivity.py:715 TurtleArtActivity.py:757 -#: TurtleArtActivity.py:970 TurtleArtActivity.py:1003 +#: TurtleArtActivity.py:297 TurtleArtActivity.py:757 TurtleArtActivity.py:799 +#: TurtleArtActivity.py:1012 TurtleArtActivity.py:1045 msgid "Save snapshot" msgstr "Gem øjebliksbillede" -#: TurtleArt/tabasics.py:889 pysamples/grecord.py:214 +#: TurtleArt/tabasics.py:902 pysamples/grecord.py:214 msgid "start" msgstr "start" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:501 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:511 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:507 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:517 msgid "returns True if heap is empty" msgstr "returnerer Sand hvis hób er tom" -#: TurtleArt/tabasics.py:133 +#: TurtleArt/tabasics.py:135 msgid "moves turtle forward" msgstr "flyt skildpadde fremad" -#: TurtleArt/tabasics.py:129 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 +#: TurtleArt/tabasics.py:131 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:770 msgid "forward" msgstr "fremad" -#: TurtleArt/tabasics.py:980 TurtleArt/tabasics.py:995 -#: TurtleArt/tawindow.py:1453 TurtleArt/tawindow.py:1585 -#: TurtleArt/tawindow.py:2182 TurtleArt/tawindow.py:4542 -#: TurtleArt/tawindow.py:4572 +#: TurtleArt/tabasics.py:993 TurtleArt/tabasics.py:1008 +#: TurtleArt/tawindow.py:1536 TurtleArt/tawindow.py:1669 +#: TurtleArt/tawindow.py:2267 TurtleArt/tawindow.py:4637 +#: TurtleArt/tawindow.py:4667 msgid "my box" msgstr "min boks" @@ -3372,31 +3440,31 @@ msgstr "min boks" msgid "Account ID" msgstr "Konto-ID" -#: TurtleArt/tawindow.py:1467 +#: TurtleArt/tawindow.py:1550 msgid "Select blocks to share" msgstr "Vælg blokke som skal deles" -#: TurtleArt/tabasics.py:142 +#: TurtleArt/tabasics.py:144 msgid "back" msgstr "tilbage" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:217 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:219 msgid "sets the scale of media" msgstr "sætter skaleringen af medie" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:250 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252 msgid "holds current scale value" msgstr "holder aktuel skaleringsværdi" -#: TurtleArt/tabasics.py:911 +#: TurtleArt/tabasics.py:924 msgid "top of nameable action stack" msgstr "top af handlingsstak som kan navngives" -#: TurtleArt/tabasics.py:981 TurtleArt/tawindow.py:4586 +#: TurtleArt/tabasics.py:994 TurtleArt/tawindow.py:4681 msgid "stores numeric value in named variable" msgstr "lagrer numerisk værdi i en navngivet variabel" -#: TurtleArt/tabasics.py:775 +#: TurtleArt/tabasics.py:784 msgid "logical OR operator" msgstr "logisk ELLER operator" @@ -3407,7 +3475,7 @@ msgstr "logisk ELLER operator" msgid "microphone input voltage" msgstr "spænding på mikrofon-indgang" -#: TurtleArt/tabasics.py:816 +#: TurtleArt/tabasics.py:827 msgid "loops specified number of times" msgstr "kører et angivet antal gange i løkke" @@ -3415,23 +3483,23 @@ msgstr "kører et angivet antal gange i løkke" msgid "Save..." msgstr "Gem..." -#: TurtleArt/tabasics.py:1037 +#: TurtleArt/tabasics.py:1050 msgid "invokes Action 2 stack" msgstr "kalder Handling 2 stak" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:746 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:782 msgid "setxy" msgstr "angiv xy" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:953 msgid "title y" msgstr "titel y" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:906 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:944 msgid "title x" msgstr "titel x" -#: TurtleArt/tabasics.py:313 TurtleArt/tabasics.py:326 +#: TurtleArt/tabasics.py:318 TurtleArt/tabasics.py:331 msgid "fill screen" msgstr "fyld skærm" @@ -3439,37 +3507,38 @@ msgstr "fyld skærm" msgid "other" msgstr "andet" -#: turtleblocks.py:383 +#: turtleblocks.py:405 msgid "Save as" msgstr "Gem som" -#: TurtleArt/tabasics.py:210 TurtleArt/tabasics.py:288 +#: TurtleArt/tabasics.py:212 TurtleArt/tabasics.py:291 msgid "set xy" msgstr "indstil xy" -#: TurtleArt/tabasics.py:1045 +#: TurtleArt/tabasics.py:1056 TurtleArt/tabasics.py:1060 +#: TurtleArt/tapalette.py:138 TurtleArt/tapalette.py:139 msgid "trash" msgstr "papirkurv" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:668 msgid "polar" msgstr "polær" -#: TurtleArt/tabasics.py:811 TurtleArt/tabasics.py:815 +#: TurtleArt/tabasics.py:822 TurtleArt/tabasics.py:826 msgid "repeat" msgstr "gentag" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 msgid "wait for current video or audio to complete" msgstr "vent på at aktuel video eller lyd afslutter" -#: TurtleArtActivity.py:257 TurtleArtActivity.py:780 TurtleArtActivity.py:961 -#: TurtleArtActivity.py:997 turtleblocks.py:384 +#: TurtleArtActivity.py:281 TurtleArtActivity.py:822 TurtleArtActivity.py:1003 +#: TurtleArtActivity.py:1039 turtleblocks.py:406 msgid "Save as image" msgstr "Gem som billede" -#: TurtleArtActivity.py:603 TurtleArtActivity.py:639 TurtleArtActivity.py:749 -#: TurtleArtActivity.py:802 turtleblocks.py:416 +#: TurtleArtActivity.py:642 TurtleArtActivity.py:677 TurtleArtActivity.py:791 +#: TurtleArtActivity.py:844 turtleblocks.py:439 msgid "Edit" msgstr "Redigér" @@ -3480,40 +3549,40 @@ msgstr "Redigér" msgid "microphone input resistance" msgstr "modstand på mikrofon-input" -#: TurtleArt/tabasics.py:1017 +#: TurtleArt/tabasics.py:1030 msgid "top of Action 2 stack" msgstr "top af Handling 2 stak" -#: TurtleArt/tabasics.py:648 +#: TurtleArt/tabasics.py:657 msgid "" "divides top numeric input (numerator) by bottom numeric input (denominator)" msgstr "" "dividerer øverste numerisk input (nævner) med nederste numeriske input " "(tæller)" -#: TurtleArt/tabasics.py:691 +#: TurtleArt/tabasics.py:700 msgid "max" msgstr "max" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:534 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540 msgid "prints value in status block at bottom of the screen" msgstr "udskriver værdi i statusblok i bunden af skærmen" -#: TurtleArt/tabasics.py:468 +#: TurtleArt/tabasics.py:473 msgid "start fill" msgstr "start udfyldning" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:372 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376 msgid "holds results of query-keyboard block as ASCII" msgstr "holder resultater for forespørgsels-tastaturblok som ASCII" #. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: push adds a new item to the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:443 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:449 msgid "push" msgstr "skub" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:599 msgid "" "a programmable block: used to add advanced multi-variable math equations, e." "g., sin(x+y+z)" @@ -3521,11 +3590,11 @@ msgstr "" "en blok som kan programmeres: anvendes til at føje avancerede matematiske " "ligninger med flere variabler, f.eks., sin(x+y+z)" -#: TurtleArt/tabasics.py:1054 +#: TurtleArt/tabasics.py:1069 msgid "restore all" msgstr "genskab alle" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:287 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:289 msgid "hello" msgstr "hej" @@ -3533,45 +3602,73 @@ msgstr "hej" msgid "TurtleBlocks" msgstr "Skildpadde-blokke" -#: TurtleArt/tabasics.py:443 +#: TurtleArt/tabasics.py:309 +msgid "pen" +msgstr "pen" + +#: TurtleArt/tabasics.py:348 +msgid "set color" +msgstr "indstil farve" + +#: TurtleArt/tabasics.py:448 msgid "pen down?" msgstr "er pennen nede?" -#: TurtleArt/tabasics.py:445 +#: TurtleArt/tabasics.py:450 msgid "returns True if pen is down" msgstr "returnerer Sand, hvis pennen er nede" -#: TurtleArt/tawindow.py:1414 -msgid "" -"Please hit the Stop Button before making changes to your Turtle Blocks " -"program" -msgstr "" -"Tryk venligst Stop-knappen før du laver ændringer i programmet Skildpadde-" -"blokke" +#: TurtleArt/tabasics.py:511 +msgid "colors" +msgstr "farver" + +#: TurtleArt/tabasics.py:606 +msgid "numbers" +msgstr "tal" + +#: TurtleArt/tabasics.py:791 +msgid "flow" +msgstr "flyd" + +#: TurtleArt/tabasics.py:893 +msgid "blocks" +msgstr "blokke" -#: TurtleArt/tawindow.py:1630 TurtleArtActivity.py:656 -#: TurtleArtActivity.py:805 turtleblocks.py:412 +#: TurtleArt/tawindow.py:1497 +msgid "Please hit the Stop Button before making changes to your program" +msgstr "Tryk venligst Stop-knappen før du laver ændringer i dit programmet" + +#: TurtleArt/tawindow.py:1714 TurtleArtActivity.py:694 +#: TurtleArtActivity.py:847 turtleblocks.py:435 msgid "Save stack" msgstr "Gem stak" -#: TurtleArt/tawindow.py:1631 TurtleArt/tawindow.py:1645 +#: TurtleArt/tawindow.py:1715 TurtleArt/tawindow.py:1729 msgid "Really overwrite stack?" msgstr "Sikker på at du vil overskrive stak?" -#: TurtleArt/tawindow.py:1638 TurtleArt/tawindow.py:1648 +#: TurtleArt/tawindow.py:1722 TurtleArt/tawindow.py:1732 msgid "Overwrite stack" msgstr "Overskriv stak" -#: TurtleArt/tawindow.py:1669 TurtleArt/tawindow.py:1677 -#: TurtleArt/tawindow.py:1686 TurtleArtActivity.py:658 turtleblocks.py:414 +#: TurtleArt/tawindow.py:1753 TurtleArt/tawindow.py:1761 +#: TurtleArt/tawindow.py:1770 TurtleArtActivity.py:696 turtleblocks.py:437 msgid "Delete stack" msgstr "Slet stak" -#: TurtleArt/tawindow.py:1670 TurtleArt/tawindow.py:1683 +#: TurtleArt/tawindow.py:1754 TurtleArt/tawindow.py:1767 msgid "Really delete stack?" msgstr "Sikker på at du vil slette stak?" -#: TurtleArtActivity.py:933 +#: TurtleArtActivity.py:127 +msgid "Please wait" +msgstr "Vent venligst" + +#: TurtleArtActivity.py:128 +msgid "Starting connection..." +msgstr "Etablerer forbindelse ..." + +#: TurtleArtActivity.py:975 msgid "Palettes" msgstr "Paletter" @@ -3579,16 +3676,60 @@ msgstr "Paletter" msgid "Facebook wall post" msgstr "Opslag på Facebook" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:123 +msgid "media" +msgstr "medie" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:438 +msgid "extras" +msgstr "ekstramateriale" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:688 +msgid "turtle x" +msgstr "skildpadde x" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:691 +msgid "Returns x coordinate of turtle" +msgstr "Returnerer x-koordinatet for skildpadden" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:698 +msgid "turtle y" +msgstr "skildpadde y" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701 +msgid "Returns y coordinate of turtle" +msgstr "Returnerer y-koordinatet for skildpadden" + #. TRANS: pop removes a new item from the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:709 msgid "active turtle" msgstr "aktiv skildpadde" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:712 msgid "the name of the active turtle" msgstr "navnet på den aktive skildpadde" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:968 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:720 +msgid "turtle heading" +msgstr "skildpaddens retning " + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 +msgid "Returns heading of turtle" +msgstr "Returnerer skildpaddens retning" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:792 +msgid "select palette" +msgstr "vælg palet" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:801 +msgid "portfolio" +msgstr "portfolio" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1002 +msgid "my blocks" +msgstr "mine blokke" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1007 msgid "Palette of user-defined operators" msgstr "Palet med brugerdefinerede operatorer" @@ -3621,18 +3762,27 @@ msgstr "" msgid "turns the turtle 180 degrees" msgstr "vend skildpadden 180 grader" -#: turtleblocks.py:376 +#: turtleblocks.py:398 msgid "Show sample projects" msgstr "Vis demoprojekter" -#: turtleblocks.py:378 +#: turtleblocks.py:400 msgid "Hide sample projects" msgstr "Skjul demoprojekter" -#: turtleblocks.py:436 +#: turtleblocks.py:459 msgid "About..." msgstr "Om ..." +#~ msgid "touch" +#~ msgstr "berør" + +#~ msgid "ultrasonic" +#~ msgstr "ultrasonisk" + +#~ msgid "touch sensor" +#~ msgstr "berør sensor" + #~ msgid "custom module sensor A" #~ msgstr "sensor A for brugerdefineret modul" @@ -3780,6 +3930,9 @@ msgstr "Om ..." #~ msgid "sets color of text drawn by the turtle" #~ msgstr "sætter farve for tekst som tegnes af skildpadden" +#~ msgid "palette" +#~ msgstr "palet" + #~ msgid "presentation 2x2" #~ msgstr "præsentation 2x2" @@ -3867,15 +4020,6 @@ msgstr "Om ..." #~ msgid "return calibration 2" #~ msgstr "returnér kalibrering 2" -#~ msgid "RGB" -#~ msgstr "RGB" - -#~ msgid "YUV" -#~ msgstr "YUV" - -#~ msgid "HSV" -#~ msgstr "HSV" - #~ msgid "Please check the port." #~ msgstr "Tjek venligst porten." @@ -4089,9 +4233,6 @@ msgstr "Om ..." #~ msgid " clean " #~ msgstr " rens " -#~ msgid "numbers" -#~ msgstr "tal" - #~ msgid "write" #~ msgstr "skriv" @@ -4104,9 +4245,6 @@ msgstr "Om ..." #~ "en blok som kan programmeres: anvendes til at tilføje avanceret " #~ "matematiske ligninger, f.eks., sin(x)" -#~ msgid "blocks" -#~ msgstr "blokke" - #~ msgid "text size" #~ msgstr "tekststørrelse" @@ -4119,12 +4257,6 @@ msgstr "Om ..." #~ msgid "picture top" #~ msgstr "billede i top" -#~ msgid "flow" -#~ msgstr "flyd" - -#~ msgid "portfolio" -#~ msgstr "portfolio" - #~ msgid "restores most recent blocks from trash" #~ msgstr "genskaber seneste blokke fra papirkurv" @@ -4143,9 +4275,6 @@ msgstr "Om ..." #~ msgid "Trashcan" #~ msgstr "Papirkurv" -#~ msgid "pen" -#~ msgstr "pen" - #~ msgid "picture right" #~ msgstr "billede til højre" @@ -4160,6 +4289,3 @@ msgstr "Om ..." #~ msgid "holds current text size (can be used in place of a number block)" #~ msgstr "holder aktuel tekststørrelse (kan anvendes i stedet for en talblok)" - -#~ msgid "extras" -#~ msgstr "ekstramateriale" diff --git a/po/en.po b/po/en.po index 311e039..5874f28 100644 --- a/po/en.po +++ b/po/en.po @@ -8,8 +8,8 @@ msgstr "" "#-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-09-14 00:32-0400\n" -"PO-Revision-Date: 2013-09-16 02:58+0200\n" +"POT-Creation-Date: 2013-10-09 14:26-0400\n" +"PO-Revision-Date: 2013-10-10 00:47+0200\n" "Last-Translator: Chris \n" "Language-Team: LANGUAGE \n" "Language: en\n" @@ -21,8 +21,8 @@ msgstr "" "#-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-07-26 00:31-0400\n" -"PO-Revision-Date: 2013-07-27 04:38+0200\n" +"POT-Creation-Date: 2013-10-08 00:30-0400\n" +"PO-Revision-Date: 2013-10-09 00:46+0200\n" "Last-Translator: Chris \n" "Language-Team: LANGUAGE \n" "Language: en\n" @@ -172,89 +172,93 @@ msgid "custom module %s" msgstr "custom module %s" #: taextras.py:93 +msgid "sensor a" +msgstr "sensor a" + +#: taextras.py:94 +msgid "sensor b" +msgstr "sensor b" + +#: taextras.py:95 +msgid "sensor c" +msgstr "sensor c" + +#: taextras.py:96 +msgid "actuator a" +msgstr "actuator a" + +#: taextras.py:97 +msgid "actuator b" +msgstr "actuator b" + +#: taextras.py:98 +msgid "actuator c" +msgstr "actuator c" + +#: taextras.py:99 msgid "LED" msgstr "LED" -#: taextras.py:94 +#: taextras.py:100 taextras.py:397 msgid "button" msgstr "button" -#: taextras.py:95 taextras.py:384 TurtleArt/tabasics.py:327 -#: TurtleArt/tabasics.py:409 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1090 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1095 +#: taextras.py:101 taextras.py:402 TurtleArt/tabasics.py:331 +#: TurtleArt/tabasics.py:413 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1129 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1134 msgid "gray" msgstr "gray" -#: taextras.py:96 taextras.py:382 +#: taextras.py:102 taextras.py:400 msgid "light" msgstr "light" -#: taextras.py:97 taextras.py:356 +#: taextras.py:103 taextras.py:376 taextras.py:398 msgid "distance" msgstr "distance" -#: taextras.py:98 plugins/audio_sensors/audio_sensors.py:151 +#: taextras.py:104 plugins/audio_sensors/audio_sensors.py:151 #: plugins/audio_sensors/audio_sensors.py:165 #: plugins/audio_sensors/audio_sensors.py:179 #: plugins/audio_sensors/audio_sensors.py:193 msgid "resistance" msgstr "resistance" -#: taextras.py:99 plugins/audio_sensors/audio_sensors.py:157 +#: taextras.py:105 plugins/audio_sensors/audio_sensors.py:157 #: plugins/audio_sensors/audio_sensors.py:171 #: plugins/audio_sensors/audio_sensors.py:185 #: plugins/audio_sensors/audio_sensors.py:199 msgid "voltage" msgstr "voltage" -#: taextras.py:100 +#: taextras.py:106 msgid "temperature" msgstr "temperature" -#: taextras.py:101 -msgid "sensor a" -msgstr "sensor a" - -#: taextras.py:102 -msgid "sensor b" -msgstr "sensor b" - -#: taextras.py:103 -msgid "sensor c" -msgstr "sensor c" - -#: taextras.py:104 -msgid "actuator a" -msgstr "actuator a" - -#: taextras.py:105 -msgid "actuator b" -msgstr "actuator b" - -#: taextras.py:106 -msgid "actuator c" -msgstr "actuator c" - #: taextras.py:107 +msgid "butia" +msgstr "butia" + +#: taextras.py:108 msgid "Butia Robot" msgstr "Butia Robot" -#: taextras.py:108 +#: taextras.py:109 msgid "refresh Butia" msgstr "refresh Butia" -#: taextras.py:109 +#: taextras.py:110 msgid "refresh the state of the Butia palette and blocks" msgstr "refresh the state of the Butia palette and blocks" #. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: This string is shorthand for "battery charge of Butia" -#: taextras.py:111 +#: taextras.py:112 msgid "battery charge Butia" msgstr "battery charge Butia" -#: taextras.py:112 +#: taextras.py:113 msgid "" "returns the battery charge in volts. If no motors present, it returns 255" msgstr "" @@ -262,291 +266,320 @@ msgstr "" #. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: This string is shorthand for "speed of Butia" -#: taextras.py:114 +#: taextras.py:115 msgid "speed Butia" msgstr "speed Butia" -#: taextras.py:115 +#: taextras.py:116 msgid "set the speed of the Butia motors" msgstr "set the speed of the Butia motors" -#: taextras.py:116 +#: taextras.py:117 msgid "move Butia" msgstr "move Butia" -#: taextras.py:117 TurtleArt/tabasics.py:169 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856 +#: taextras.py:118 TurtleArt/tabasics.py:171 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 msgid "left" msgstr "left" -#: taextras.py:118 TurtleArt/tabasics.py:181 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:880 +#: taextras.py:119 TurtleArt/tabasics.py:183 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:918 msgid "right" msgstr "right" -#: taextras.py:119 +#: taextras.py:120 msgid "moves the Butia motors at the specified speed" msgstr "moves the Butia motors at the specified speed" -#: taextras.py:120 +#: taextras.py:121 msgid "stop Butia" msgstr "stop Butia" -#: taextras.py:121 +#: taextras.py:122 msgid "stop the Butia robot" msgstr "stop the Butia robot" #. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: This string is shorthand for "move Butia forward" -#: taextras.py:123 +#: taextras.py:124 msgid "forward Butia" msgstr "forward Butia" -#: taextras.py:124 +#: taextras.py:125 msgid "move the Butia robot forward" msgstr "move the Butia robot forward" #. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: This string is shorthand for "turn Butia left" -#: taextras.py:126 +#: taextras.py:127 msgid "left Butia" msgstr "left Butia" -#: taextras.py:127 +#: taextras.py:128 msgid "turn the Butia robot at left" msgstr "turn the Butia robot at left" #. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: This string is shorthand for "turn Butia right" -#: taextras.py:129 +#: taextras.py:130 msgid "right Butia" msgstr "right Butia" -#: taextras.py:130 +#: taextras.py:131 msgid "turn the Butia robot at right" msgstr "turn the Butia robot at right" #. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: This string is shorthand for "move Butia backward" -#: taextras.py:132 +#: taextras.py:133 msgid "backward Butia" msgstr "backward Butia" -#: taextras.py:133 +#: taextras.py:134 msgid "move the Butia robot backward" msgstr "move the Butia robot backward" -#: taextras.py:134 +#: taextras.py:135 +msgid "butia-extra" +msgstr "butia-extra" + +#. TRANS: cast means data type conversion +#: taextras.py:137 msgid "Butia Robot extra blocks" msgstr "Butia Robot extra blocks" -#: taextras.py:135 +#: taextras.py:138 msgid "pin mode Butia" msgstr "pin mode Butia" -#: taextras.py:136 taextras.py:319 taextras.py:485 +#: taextras.py:139 taextras.py:339 taextras.py:508 msgid "pin" msgstr "pin" -#: taextras.py:137 taextras.py:486 +#: taextras.py:140 taextras.py:509 msgid "mode" msgstr "mode" -#: taextras.py:138 +#: taextras.py:141 msgid "Select the pin function (INPUT, OUTPUT)." msgstr "Select the pin function (INPUT, OUTPUT)." -#: taextras.py:139 +#: taextras.py:142 msgid "read pin Butia" msgstr "read pin Butia" -#: taextras.py:140 +#: taextras.py:143 msgid "read the value of a pin" msgstr "read the value of a pin" -#: taextras.py:141 +#: taextras.py:144 msgid "write pin Butia" msgstr "write pin Butia" -#: taextras.py:142 taextras.py:489 TurtleArt/tabasics.py:976 -#: TurtleArt/tawindow.py:4581 +#: taextras.py:145 taextras.py:512 TurtleArt/tabasics.py:988 +#: TurtleArt/tawindow.py:4643 msgid "value" msgstr "value" -#: taextras.py:143 +#: taextras.py:146 msgid "set a hack pin to 0 or 1" msgstr "set a hack pin to 0 or 1" -#: taextras.py:144 taextras.py:463 +#: taextras.py:147 taextras.py:485 msgid "INPUT" msgstr "INPUT" -#: taextras.py:145 +#: taextras.py:148 msgid "Configure hack pin for digital input." msgstr "Configure hack pin for digital input." -#: taextras.py:146 taextras.py:461 +#: taextras.py:149 taextras.py:483 msgid "HIGH" msgstr "HIGH" -#: taextras.py:147 +#: taextras.py:150 msgid "Set HIGH value for digital pin." msgstr "Set HIGH value for digital pin." -#: taextras.py:148 taextras.py:462 +#: taextras.py:151 taextras.py:484 msgid "LOW" msgstr "LOW" -#: taextras.py:149 taextras.py:501 +#: taextras.py:152 taextras.py:524 msgid "Set LOW value for digital port." msgstr "Set LOW value for digital port." -#: taextras.py:150 taextras.py:464 +#: taextras.py:153 taextras.py:486 msgid "OUTPUT" msgstr "OUTPUT" -#: taextras.py:151 +#: taextras.py:154 msgid "Configure hack port for digital output." msgstr "Configure hack port for digital output." -#: taextras.py:152 +#: taextras.py:155 +msgid "butia-cast" +msgstr "butia-cast" + +#: taextras.py:156 msgid "Butia Robot cast blocks" msgstr "Butia Robot cast blocks" -#: taextras.py:153 +#: taextras.py:157 msgid "Butia" msgstr "Butia" -#: taextras.py:154 +#. TRANS: cast means data type conversion +#: taextras.py:159 msgid "CAST\n" msgstr "CAST\n" -#: taextras.py:155 +#: taextras.py:160 msgid "new name" msgstr "new name" -#: taextras.py:156 +#: taextras.py:161 msgid "original" msgstr "original" -#: taextras.py:157 +#: taextras.py:162 msgid "f(x)=" msgstr "f(x)=" -#: taextras.py:158 +#: taextras.py:163 msgid "name" msgstr "name" -#: taextras.py:159 +#. TRANS: cast means data type conversion +#: taextras.py:165 msgid "Cast a new block" msgstr "Cast a new block" -#: taextras.py:160 +#: taextras.py:166 #, python-format msgid "generic module %s" msgstr "generic module %s" -#: taextras.py:161 +#: taextras.py:167 +msgid "Butia IP" +msgstr "Butia IP" + +#: taextras.py:168 +msgid "change the ip of butia robot" +msgstr "change the IP of butia robot" + +#: taextras.py:169 #, python-format msgid "ERROR: The pin %s must be in OUTPUT mode." msgstr "ERROR: The pin %s must be in OUTPUT mode." -#: taextras.py:162 +#: taextras.py:170 #, python-format msgid "ERROR: The pin %s must be in INPUT mode." msgstr "ERROR: The pin %s must be in INPUT mode." -#: taextras.py:163 +#: taextras.py:171 #, python-format msgid "ERROR: Something wrong with function '%s'" msgstr "ERROR: Something wrong with function '%s'" -#: taextras.py:164 +#: taextras.py:172 #, python-format msgid "ERROR: cannot init GCONF client: %s" msgstr "ERROR: cannot init GCONF client: %s" -#: taextras.py:165 +#. TRANS: cast means data type conversion +#: taextras.py:174 msgid "ERROR: You must cast Sensor or Actuator: A, B or C" msgstr "ERROR: You must cast Sensor or Actuator: A, B or C" -#: taextras.py:166 +#: taextras.py:175 +#, python-format +msgid "ERROR: Invalid IP '%s'" +msgstr "ERROR: Invalid IP '%s'" + +#: taextras.py:176 msgid "Creating PyBot server" msgstr "Creating PyBot server" -#: taextras.py:167 +#: taextras.py:177 msgid "ERROR creating PyBot server" msgstr "ERROR creating PyBot server" -#: taextras.py:168 +#: taextras.py:178 msgid "PyBot is alive!" msgstr "PyBot is alive!" -#: taextras.py:169 +#: taextras.py:179 msgid "Ending butia polling" msgstr "Ending butia polling" -#: taextras.py:173 +#: taextras.py:183 msgid "Error importing Pygame. This plugin require Pygame 1.9" msgstr "Error importing Pygame. This plugin require Pygame 1.9" -#: taextras.py:174 +#: taextras.py:184 msgid "Error on initialization of the camera" msgstr "Error on initialization of the camera" -#: taextras.py:175 +#: taextras.py:185 msgid "No camera was found" msgstr "No camera was found" -#: taextras.py:176 +#: taextras.py:186 msgid "Error stopping camera" msgstr "Error stopping camera" -#: taextras.py:177 +#: taextras.py:187 msgid "Error starting camera" msgstr "Error starting camera" #. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: The "mask" is used to restrict processing to a region in the image -#: taextras.py:179 +#: taextras.py:189 msgid "Error in get mask" msgstr "Error in get mask" -#: taextras.py:180 +#: taextras.py:190 +msgid "followme" +msgstr "followme" + +#: taextras.py:191 msgid "FollowMe" msgstr "FollowMe" -#: taextras.py:181 +#: taextras.py:192 msgid "refresh FollowMe" msgstr "refresh FollowMe" -#: taextras.py:182 +#: taextras.py:193 msgid "Search for a connected camera." msgstr "Search for a connected camera." #. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: the calibration is used to match an RGB color to a target -#: taextras.py:184 +#: taextras.py:195 msgid "calibration" msgstr "calibration" -#: taextras.py:185 +#: taextras.py:196 msgid "store a personalized calibration" msgstr "store a personalized calibration" -#: taextras.py:186 +#: taextras.py:197 msgid "return a personalized calibration" msgstr "return a personalized calibration" -#: taextras.py:187 +#: taextras.py:198 msgid "follow" msgstr "follow" -#: taextras.py:188 +#: taextras.py:199 msgid "follow a color or calibration" msgstr "follow a color or calibration" -#: taextras.py:189 plugins/camera_sensor/camera_sensor.py:80 +#: taextras.py:200 plugins/camera_sensor/camera_sensor.py:80 #: plugins/camera_sensor/camera_sensor.py:93 #: plugins/camera_sensor/camera_sensor.py:128 #: plugins/camera_sensor/camera_sensor.py:141 @@ -555,325 +588,361 @@ msgstr "follow a color or calibration" msgid "brightness" msgstr "brightness" -#: taextras.py:190 +#: taextras.py:201 msgid "set the camera brightness as a value between 0 to 255." msgstr "set the camera brightness as a value between 0 to 255." -#: taextras.py:191 +#: taextras.py:202 msgid "minimum pixels" msgstr "minimum pixels" -#: taextras.py:192 +#: taextras.py:203 msgid "set the minimal number of pixels to follow" msgstr "set the minimal number of pixels to follow" -#: taextras.py:193 +#: taextras.py:204 msgid "threshold" msgstr "threshold" #. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: RGB color space (red, green, blue) -#: taextras.py:195 +#: taextras.py:206 msgid "set a threshold for a RGB color" msgstr "set a threshold for a RGB color" -#: taextras.py:196 +#: taextras.py:207 msgid "camera mode" msgstr "camera mode" #. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: RGB, YUV, and HSV are color spaces -#: taextras.py:198 +#: taextras.py:209 msgid "set the color mode of the camera: RGB; YUV or HSV" msgstr "set the color mode of the camera: RGB; YUV or HSV" -#: taextras.py:199 +#: taextras.py:210 msgid "get brightness" msgstr "get brightness" -#: taextras.py:200 +#: taextras.py:211 msgid "get the brightness of the ambient light" msgstr "get the brightness of the ambient light" -#: taextras.py:201 +#: taextras.py:212 msgid "average color" msgstr "average color" -#: taextras.py:202 +#: taextras.py:213 msgid "" -"if set to 0 then color averaging is off during calibration; for other values " +"if set to 0 then color averaging is off during calibration;for other values, " "it is on" msgstr "" -"if set to 0 then color averaging is off during calibration; for other values " +"if set to 0 then color averaging is off during calibration;for other values, " "it is on" -#: taextras.py:204 +#: taextras.py:215 msgid "x position" msgstr "x position" -#: taextras.py:205 +#: taextras.py:216 msgid "return x position" msgstr "return x position" -#: taextras.py:206 +#: taextras.py:217 msgid "y position" msgstr "y position" -#: taextras.py:207 +#: taextras.py:218 msgid "return y position" msgstr "return y position" -#: taextras.py:208 +#: taextras.py:219 msgid "pixels" msgstr "pixels" -#: taextras.py:209 +#: taextras.py:220 msgid "return the number of pixels of the biggest blob" msgstr "return the number of pixels of the biggest blob" #. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: RGB color space (red, green, blue) -#: taextras.py:211 +#: taextras.py:222 +msgid "RGB" +msgstr "RGB" + +#: taextras.py:223 msgid "set the color mode of the camera to RGB" msgstr "set the color mode of the camera to RGB" #. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: YUV color space (luminance, chrominance) -#: taextras.py:213 +#: taextras.py:225 +msgid "YUV" +msgstr "YUV" + +#: taextras.py:226 msgid "set the color mode of the camera to YUV" msgstr "set the color mode of the camera to YUV" #. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: HSV color space (hue, saturation, value) -#: taextras.py:215 +#: taextras.py:228 +msgid "HSV" +msgstr "HSV" + +#: taextras.py:229 msgid "set the color mode of the camera to HSV" msgstr "set the color mode of the camera to HSV" -#: taextras.py:216 +#: taextras.py:230 +msgid "get color" +msgstr "get color" + +#: taextras.py:231 +msgid "get the color of an object" +msgstr "get the color of an object" + +#: taextras.py:232 +msgid "color distance" +msgstr "color distance" + +#: taextras.py:233 +msgid "set the distance to identify a color" +msgstr "set the distance to identify a color" + +#: taextras.py:234 msgid "empty calibration" msgstr "empty calibration" -#: taextras.py:217 +#: taextras.py:235 msgid "error in string conversion" msgstr "error in string conversion" #. TRANS: Pattern detection is a plugin that allow detect signals #. with the camera -#: taextras.py:223 +#: taextras.py:241 msgid "Pattern detection" msgstr "Pattern detection" -#: taextras.py:224 +#: taextras.py:242 +msgid "pattern_detection" +msgstr "pattern_detection" + +#: taextras.py:243 msgid "Seeing signal" msgstr "Seeing signal" -#: taextras.py:225 +#: taextras.py:244 msgid "Returns True if the signal is in front of the camera" msgstr "Returns True if the signal is in front of the camera" -#: taextras.py:226 +#: taextras.py:245 msgid "Distance to signal" msgstr "Distance to signal" -#: taextras.py:227 +#: taextras.py:246 msgid "Returns the distance of the signal to the camera in millimeters" msgstr "Returns the distance of the signal to the camera in millimeters" #. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: SumBot is a robot programmed for "Sumo wrestling" -#: taextras.py:232 +#: taextras.py:251 msgid "SumBot" msgstr "SumBot" -#: taextras.py:233 +#: taextras.py:252 +msgid "sumtia" +msgstr "sumtia" + +#: taextras.py:253 msgid "speed SumBot" msgstr "speed SumBot" -#: taextras.py:234 +#: taextras.py:254 msgid "submit the speed to the SumBot" msgstr "submit the speed to the SumBot" -#: taextras.py:235 +#: taextras.py:255 msgid "set the default speed for the movement commands" msgstr "set the default speed for the movement commands" #. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: This string is shorthand for "move SumBot forward" -#: taextras.py:237 +#: taextras.py:257 msgid "forward SumBot" msgstr "forward SumBot" -#: taextras.py:238 +#: taextras.py:258 msgid "move SumBot forward" msgstr "move SumBot forward" #. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: This string is shorthand for "move SumBot backward" -#: taextras.py:240 +#: taextras.py:260 msgid "backward SumBot" msgstr "backward SumBot" -#: taextras.py:241 +#: taextras.py:261 msgid "move SumBot backward" msgstr "move SumBot backward" -#: taextras.py:242 +#: taextras.py:262 msgid "stop SumBot" msgstr "stop SumBot" -#: taextras.py:243 +#: taextras.py:263 msgid "stop the SumBot" msgstr "stop the SumBot" #. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: This string is shorthand for "turn SumBot left" -#: taextras.py:245 +#: taextras.py:265 msgid "left SumBot" msgstr "left SumBot" -#: taextras.py:246 +#: taextras.py:266 msgid "turn left the SumBot" msgstr "turn left the SumBot" #. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: This string is shorthand for "move SumBot right" -#: taextras.py:248 +#: taextras.py:268 msgid "right SumBot" msgstr "right SumBot" -#: taextras.py:249 +#: taextras.py:269 msgid "turn right the SumBot" msgstr "turn right the SumBot" #. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: The angle to the center is the angle SumBot must turn to #. face the center of the playing field -#: taextras.py:252 +#: taextras.py:272 msgid "angle to center" msgstr "angle to center" #. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: dohyo is the playing field -#: taextras.py:254 +#: taextras.py:274 msgid "get the angle to the center of the dohyo" msgstr "get the angle to the center of the dohyo" #. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: The angle to the center is the angle SumBot must turn to #. face the Enemy (opponent) -#: taextras.py:257 +#: taextras.py:277 msgid "angle to Enemy" msgstr "angle to Enemy" -#: taextras.py:258 +#: taextras.py:278 msgid "get the angle to the Enemy" msgstr "get the angle to the Enemy" #. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: This string is shorthand for "x coordinate of SumBot" -#: taextras.py:260 +#: taextras.py:280 msgid "x coor. SumBot" msgstr "x coor. SumBot" -#: taextras.py:261 +#: taextras.py:281 msgid "get the x coordinate of the SumBot" msgstr "get the x coordinate of the SumBot" #. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: This string is shorthand for "y coordinate of SumBot" -#: taextras.py:263 +#: taextras.py:283 msgid "y coor. SumBot" msgstr "y coor. SumBot" -#: taextras.py:264 +#: taextras.py:284 msgid "get the y coordinate of the SumBot" msgstr "get the y coordinate of the SumBot" #. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" -#: taextras.py:266 +#: taextras.py:286 msgid "x coor. Enemy" msgstr "x coor. Enemy" -#: taextras.py:267 +#: taextras.py:287 msgid "get the x coordinate of the Enemy" msgstr "get the x coordinate of the Enemy" #. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" -#: taextras.py:269 +#: taextras.py:289 msgid "y coor. Enemy" msgstr "y coor. Enemy" -#: taextras.py:270 +#: taextras.py:290 msgid "get the y coordinate of the Enemy" msgstr "get the y coordinate of the Enemy" #. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: This string is shorthand for "rotation of SumBot" -#: taextras.py:272 +#: taextras.py:292 msgid "rotation SumBot" msgstr "rotation SumBot" -#: taextras.py:273 +#: taextras.py:293 msgid "get the rotation of the Sumbot" msgstr "get the rotation of the Sumbot" #. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: This string is shorthand for "rotation of SumBot's enemy" -#: taextras.py:275 +#: taextras.py:295 msgid "rotation Enemy" msgstr "rotation Enemy" -#: taextras.py:276 +#: taextras.py:296 msgid "get the rotation of the Enemy" msgstr "get the rotation of the Enemy" -#: taextras.py:277 +#: taextras.py:297 msgid "distance to center" msgstr "distance to center" #. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: dohyo is the playing field -#: taextras.py:279 +#: taextras.py:299 msgid "get the distance to the center of the dohyo" msgstr "get the distance to the center of the dohyo" -#: taextras.py:280 +#: taextras.py:300 msgid "distance to Enemy" msgstr "distance to Enemy" -#: taextras.py:281 +#: taextras.py:301 msgid "get the distance to the Enemy" msgstr "get the distance to the Enemy" -#: taextras.py:282 +#: taextras.py:302 msgid "update information" msgstr "update information" -#: taextras.py:283 +#: taextras.py:303 msgid "update information from the server" msgstr "update information from the server" #. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: Please use similar terms to those used in the Physics Activity -#: taextras.py:288 +#: taextras.py:308 msgid "Palette of physics blocks" msgstr "Palette of physics blocks" -#: taextras.py:289 +#: taextras.py:309 msgid "start polygon" msgstr "start polygon" -#: taextras.py:290 +#: taextras.py:310 msgid "Begin defining a new polygon based on the current Turtle xy position." msgstr "Begin defining a new polygon based on the current Turtle xy position." -#: taextras.py:292 +#: taextras.py:312 msgid "add point" msgstr "add point" -#: taextras.py:293 +#: taextras.py:313 msgid "" "Add a new point to the current polygon based on the current Turtle xy " "position." @@ -881,88 +950,88 @@ msgstr "" "Add a new point to the current polygon based on the current Turtle xy " "position." -#: taextras.py:295 +#: taextras.py:315 msgid "end polygon" msgstr "end polygon" -#: taextras.py:296 +#: taextras.py:316 msgid "Define a new polygon." msgstr "Define a new polygon." -#: taextras.py:297 +#: taextras.py:317 msgid "end filled polygon" msgstr "end filled polygon" -#: taextras.py:298 +#: taextras.py:318 msgid "Not a simple polygon" msgstr "Not a simple polygon" -#: taextras.py:299 +#: taextras.py:319 msgid "Define a new filled polygon." msgstr "Define a new filled polygon." -#: taextras.py:300 +#: taextras.py:320 msgid "triangle" msgstr "triangle" #. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: base of a triangle -#: taextras.py:302 +#: taextras.py:322 msgid "base" msgstr "base" -#: taextras.py:303 taextras.py:309 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896 +#: taextras.py:323 taextras.py:329 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:934 msgid "height" msgstr "height" -#: taextras.py:304 +#: taextras.py:324 msgid "Add a triangle object to the project." msgstr "Add a triangle object to the project." -#: taextras.py:305 +#: taextras.py:325 msgid "circle" msgstr "circle" -#: taextras.py:306 +#: taextras.py:326 msgid "Add a circle object to the project." msgstr "Add a circle object to the project." -#: taextras.py:307 +#: taextras.py:327 msgid "rectangle" msgstr "rectangle" -#: taextras.py:308 plugins/turtle_blocks_extras/turtle_blocks_extras.py:872 +#: taextras.py:328 plugins/turtle_blocks_extras/turtle_blocks_extras.py:910 msgid "width" msgstr "width" -#: taextras.py:310 +#: taextras.py:330 msgid "Add a rectangle object to the project." msgstr "Add a rectangle object to the project." -#: taextras.py:311 +#: taextras.py:331 msgid "reset" msgstr "reset" -#: taextras.py:312 +#: taextras.py:332 msgid "Reset the project; clear the object list." msgstr "Reset the project; clear the object list." -#: taextras.py:313 +#: taextras.py:333 msgid "motor" msgstr "motor" #. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: torque as in engine torque -#: taextras.py:315 +#: taextras.py:335 msgid "torque" msgstr "torque" -#: taextras.py:316 +#: taextras.py:336 msgid "speed" msgstr "speed" -#: taextras.py:317 +#: taextras.py:337 msgid "" "Motor torque and speed range from 0 (off) to positive numbers; motor is " "placed on the most recent object created." @@ -970,23 +1039,23 @@ msgstr "" "Motor torque and speed range from 0 (off) to positive numbers; motor is " "placed on the most recent object created." -#: taextras.py:320 +#: taextras.py:340 msgid "Pin an object down so that it cannot fall." msgstr "Pin an object down so that it cannot fall." -#: taextras.py:321 +#: taextras.py:341 msgid "joint" msgstr "joint" -#: taextras.py:322 TurtleArt/tabasics.py:210 TurtleArt/tabasics.py:288 +#: taextras.py:342 TurtleArt/tabasics.py:212 TurtleArt/tabasics.py:290 msgid "x" msgstr "x" -#: taextras.py:323 TurtleArt/tabasics.py:210 TurtleArt/tabasics.py:288 +#: taextras.py:343 TurtleArt/tabasics.py:212 TurtleArt/tabasics.py:290 msgid "y" msgstr "y" -#: taextras.py:324 +#: taextras.py:344 msgid "" "Join two objects together (the most recent object created and the object at " "point x, y)." @@ -994,39 +1063,39 @@ msgstr "" "Join two objects together (the most recent object created and the object at " "point x, y)." -#: taextras.py:326 +#: taextras.py:346 msgid "save as Physics activity" msgstr "save as Physics activity" -#: taextras.py:327 +#: taextras.py:347 msgid "Save the project to the Journal as a Physics activity." msgstr "Save the project to the Journal as a Physics activity." #. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: Here, gear means a toothed wheel, as in a clock-works -#: taextras.py:329 +#: taextras.py:349 msgid "gear" msgstr "gear" -#: taextras.py:330 +#: taextras.py:350 msgid "Add a gear object to the project." msgstr "Add a gear object to the project." -#: taextras.py:331 +#: taextras.py:351 msgid "density" msgstr "density" -#: taextras.py:332 +#: taextras.py:352 msgid "" "Set the density property for objects (density can be any positive number)." msgstr "" "Set the density property for objects (density can be any positive number)." -#: taextras.py:334 +#: taextras.py:354 msgid "friction" msgstr "friction" -#: taextras.py:335 +#: taextras.py:355 msgid "" "Set the friction property for objects (value from 0 to 1, where 0 turns " "friction off and 1 is strong friction)." @@ -1036,11 +1105,11 @@ msgstr "" #. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: bounciness is coefficient of restitution -#: taextras.py:338 +#: taextras.py:358 msgid "bounciness" msgstr "bounciness" -#: taextras.py:339 +#: taextras.py:359 msgid "" "Set the bounciness property for objects (a value from 0 to 1, where 0 means " "no bounce and 1 is very bouncy)." @@ -1050,11 +1119,11 @@ msgstr "" #. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: dynamic here means moving vs in a fixed position -#: taextras.py:342 +#: taextras.py:362 msgid "dynamic" msgstr "dynamic" -#: taextras.py:343 +#: taextras.py:363 msgid "" "If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." msgstr "" @@ -1062,27 +1131,27 @@ msgstr "" #. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: WeDo is a robotics product of the LEGO company -#: taextras.py:349 +#: taextras.py:369 msgid "Palette of WeDo blocks" msgstr "Palette of WeDo blocks" -#: taextras.py:350 +#: taextras.py:370 msgid "WeDo" msgstr "WeDo" -#: taextras.py:351 +#: taextras.py:371 msgid "set current WeDo device" msgstr "set current WeDo device" -#: taextras.py:352 +#: taextras.py:372 msgid "number of WeDo devices" msgstr "number of WeDo devices" -#: taextras.py:353 +#: taextras.py:373 msgid "tilt" msgstr "tilt" -#: taextras.py:354 +#: taextras.py:374 msgid "" "tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " "tilt left, 2 == tilt right)" @@ -1092,41 +1161,41 @@ msgstr "" #. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: This string is shorthand for "output of the distance sensor" -#: taextras.py:358 +#: taextras.py:378 msgid "distance sensor output" msgstr "distance sensor output" -#: taextras.py:359 +#: taextras.py:379 msgid "Motor A" msgstr "Motor A" -#: taextras.py:360 +#: taextras.py:380 msgid "returns the current value of Motor A" msgstr "returns the current value of Motor A" -#: taextras.py:361 +#: taextras.py:381 msgid "Motor B" msgstr "Motor B" -#: taextras.py:362 +#: taextras.py:382 msgid "returns the current value of Motor B" msgstr "returns the current value of Motor B" -#: taextras.py:363 +#: taextras.py:383 msgid "set the value for Motor A" msgstr "set the value for Motor A" -#: taextras.py:364 +#: taextras.py:384 msgid "set the value for Motor B" msgstr "set the value for Motor B" -#: taextras.py:365 +#: taextras.py:385 msgid "WeDo is unavailable" msgstr "WeDo is unavailable" #. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 -#: taextras.py:367 +#: taextras.py:387 #, python-format msgid "WeDo %d is unavailable; defaulting to 1" msgstr "WeDo %d is unavailable; defaulting to 1" @@ -1134,134 +1203,130 @@ msgstr "WeDo %d is unavailable; defaulting to 1" #. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: %(device)s and %(wedo_number)d are substitution strings; #. please leave untranslated -#: taextras.py:370 +#: taextras.py:390 #, python-format msgid "%(device)s is unavailable on WeDo %(wedo_number)d" msgstr "%(device)s is unavailable on WeDo %(wedo_number)d" #. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: Lego NXT is a robotics product of the LEGO company -#: taextras.py:375 +#: taextras.py:395 msgid "Palette of LEGO NXT blocks of motors" msgstr "Palette of LEGO NXT blocks of motors" -#: taextras.py:376 +#: taextras.py:396 msgid "Palette of LEGO NXT blocks of sensors" msgstr "Palette of LEGO NXT blocks of sensors" -#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: touch sensor (implemented as a button) -#: taextras.py:378 -msgid "touch" -msgstr "touch" - -#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: distance sensor (implemented using ultrasonics) -#: taextras.py:380 -msgid "ultrasonic" -msgstr "ultrasonic" - -#: taextras.py:381 TurtleArt/tabasics.py:313 TurtleArt/tabasics.py:326 -#: TurtleArt/tabasics.py:384 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1093 +#: taextras.py:399 TurtleArt/tabasics.py:317 TurtleArt/tabasics.py:330 +#: TurtleArt/tabasics.py:388 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1132 msgid "color" msgstr "color" -#: taextras.py:383 plugins/audio_sensors/audio_sensors.py:83 +#: taextras.py:401 plugins/audio_sensors/audio_sensors.py:83 #: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:206 msgid "sound" msgstr "sound" #. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: The brick is the NXT controller -#: taextras.py:386 +#: taextras.py:404 msgid "Please check the connection with the brick" msgstr "Please check the connection with the brick" -#: taextras.py:387 +#: taextras.py:405 #, python-format msgid "Invalid port '%s'. Port must be: PORT A, B or C" msgstr "Invalid port '%s'. Port must be: PORT A, B or C" -#: taextras.py:388 +#: taextras.py:406 #, python-format msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" msgstr "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" -#: taextras.py:389 +#: taextras.py:407 msgid "The value of power must be between -127 to 127" msgstr "The value of power must be between -127 to 127" -#: taextras.py:390 +#: taextras.py:408 #, python-format msgid "The parameter must be a integer, not '%s'" msgstr "The parameter must be a integer, not '%s'" -#: taextras.py:391 +#: taextras.py:409 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:392 +#: taextras.py:410 #, python-format msgid "NXT found %s bricks" msgstr "NXT found %s bricks" -#: taextras.py:393 +#: taextras.py:411 msgid "NXT not found" msgstr "NXT not found" -#: taextras.py:394 +#: taextras.py:412 #, python-format msgid "Brick number %s was not found" msgstr "Brick number %s was not found" -#: taextras.py:395 +#: taextras.py:413 +msgid "nxt-motors" +msgstr "nxt-motors" + +#: taextras.py:414 msgid "refresh NXT" msgstr "refresh NXT" -#: taextras.py:396 +#: taextras.py:415 msgid "Search for a connected NXT brick." msgstr "Search for a connected NXT brick." -#: taextras.py:397 +#: taextras.py:416 msgid "NXT" msgstr "NXT" -#: taextras.py:398 +#: taextras.py:417 msgid "set current NXT device" msgstr "set current NXT device" -#: taextras.py:399 +#: taextras.py:418 +msgid "number of NXTs" +msgstr "number of NXTs" + +#: taextras.py:419 msgid "number of NXT devices" msgstr "number of NXT devices" -#: taextras.py:400 +#: taextras.py:420 msgid "brick name" msgstr "brick name" -#: taextras.py:401 +#: taextras.py:421 msgid "Get the name of a brick." msgstr "Get the name of a brick." -#: taextras.py:402 +#: taextras.py:422 msgid "play tone" msgstr "play tone" -#: taextras.py:403 +#: taextras.py:423 msgid "frequency" msgstr "frequency" -#: taextras.py:404 plugins/turtle_blocks_extras/turtle_blocks_extras.py:425 +#: taextras.py:424 plugins/turtle_blocks_extras/turtle_blocks_extras.py:429 msgid "time" msgstr "time" -#: taextras.py:405 +#: taextras.py:425 msgid "Play a tone at frequency for time." msgstr "Play a tone at frequency for time." #. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: turn is the action -#: taextras.py:407 +#: taextras.py:427 msgid "" "turn motor\n" "\n" @@ -1269,25 +1334,25 @@ msgstr "" "turn motor\n" "\n" -#: taextras.py:408 +#: taextras.py:428 msgid "port" msgstr "port" -#: taextras.py:409 -msgid "power" -msgstr "power" - #. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: rotations is quantity of turns -#: taextras.py:411 +#: taextras.py:430 msgid "rotations" msgstr "rotations" -#: taextras.py:412 +#: taextras.py:431 +msgid "power" +msgstr "power" + +#: taextras.py:432 msgid "turn a motor" msgstr "turn a motor" -#: taextras.py:413 +#: taextras.py:434 msgid "" "synchronize\n" "\n" @@ -1297,39 +1362,39 @@ msgstr "" "\n" "motors" -#: taextras.py:414 +#: taextras.py:435 msgid "steering" msgstr "steering" -#: taextras.py:415 +#: taextras.py:436 msgid "synchronize two motors connected in PORT B and PORT C" msgstr "synchronize two motors connected in PORT B and PORT C" -#: taextras.py:416 +#: taextras.py:437 msgid "PORT A" msgstr "PORT A" -#: taextras.py:417 +#: taextras.py:438 msgid "PORT A of the brick" msgstr "PORT A of the brick" -#: taextras.py:418 +#: taextras.py:439 msgid "PORT B" msgstr "PORT B" -#: taextras.py:419 +#: taextras.py:440 msgid "PORT B of the brick" msgstr "PORT B of the brick" -#: taextras.py:420 +#: taextras.py:441 msgid "PORT C" msgstr "PORT C" -#: taextras.py:421 +#: taextras.py:442 msgid "PORT C of the brick" msgstr "PORT C of the brick" -#: taextras.py:422 +#: taextras.py:443 msgid "" "synchronize\n" "motors" @@ -1337,225 +1402,233 @@ msgstr "" "synchronize\n" "motors" -#: taextras.py:423 +#: taextras.py:444 msgid "start motor" msgstr "start motor" -#: taextras.py:424 +#: taextras.py:445 msgid "Run a motor forever." msgstr "Run a motor forever." -#: taextras.py:425 +#: taextras.py:446 msgid "brake motor" msgstr "brake motor" -#: taextras.py:426 +#: taextras.py:447 msgid "Stop a specified motor." msgstr "Stop a specified motor." #. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: reset is used to reset the counter associated with the motor -#: taextras.py:428 +#: taextras.py:449 msgid "reset motor" msgstr "reset motor" -#: taextras.py:429 +#: taextras.py:450 msgid "Reset the motor counter." msgstr "Reset the motor counter." -#: taextras.py:430 +#: taextras.py:451 msgid "motor position" msgstr "motor position" -#: taextras.py:431 +#: taextras.py:452 msgid "Get the motor position." msgstr "Get the motor position." -#: taextras.py:432 +#: taextras.py:453 +msgid "nxt-sensors" +msgstr "nxt-sensors" + +#: taextras.py:454 msgid "PORT 1" msgstr "PORT 1" -#: taextras.py:433 +#: taextras.py:455 msgid "PORT 1 of the brick" msgstr "PORT 1 of the brick" -#: taextras.py:434 +#: taextras.py:456 msgid "read" msgstr "read" -#: taextras.py:435 +#: taextras.py:457 plugins/turtle_blocks_extras/turtle_blocks_extras.py:309 msgid "sensor" msgstr "sensor" -#: taextras.py:436 +#: taextras.py:458 msgid "Read sensor output." msgstr "Read sensor output." -#: taextras.py:437 +#: taextras.py:459 msgid "PORT 2" msgstr "PORT 2" -#: taextras.py:438 +#: taextras.py:460 msgid "PORT 2 of the brick" msgstr "PORT 2 of the brick" -#: taextras.py:439 +#: taextras.py:461 msgid "light sensor" msgstr "light sensor" -#: taextras.py:440 +#: taextras.py:462 msgid "gray sensor" msgstr "gray sensor" -#: taextras.py:441 +#: taextras.py:463 msgid "PORT 3" msgstr "PORT 3" -#: taextras.py:442 +#: taextras.py:464 msgid "PORT 3 of the brick" msgstr "PORT 3 of the brick" -#: taextras.py:443 -msgid "touch sensor" -msgstr "touch sensor" +#: taextras.py:465 +msgid "button sensor" +msgstr "button sensor" -#: taextras.py:444 +#: taextras.py:466 msgid "distance sensor" msgstr "distance sensor" -#: taextras.py:445 +#: taextras.py:467 msgid "PORT 4" msgstr "PORT 4" -#: taextras.py:446 +#: taextras.py:468 msgid "PORT 4 of the brick" msgstr "PORT 4 of the brick" -#: taextras.py:447 +#: taextras.py:469 msgid "sound sensor" msgstr "sound sensor" -#: taextras.py:448 +#: taextras.py:470 msgid "color sensor" msgstr "color sensor" #. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: set light is used to set the light level associated with #. the color sensor (which can emit light as well as sense it) -#: taextras.py:451 +#: taextras.py:473 msgid "set light" msgstr "set light" -#: taextras.py:452 +#: taextras.py:474 msgid "Set color sensor light." msgstr "Set color sensor light." #. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: the battery level is the charge level of the brick -#: taextras.py:454 +#: taextras.py:476 msgid "battery level" msgstr "battery level" -#: taextras.py:455 +#: taextras.py:477 msgid "Get the battery level of the brick in millivolts" msgstr "Get the battery level of the brick in millivolts" #. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: Arduino plugin to control an Arduino board -#: taextras.py:460 +#: taextras.py:482 msgid "Palette of Arduino blocks" msgstr "Palette of Arduino blocks" #. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: PWM is pulse-width modulation -#: taextras.py:466 +#: taextras.py:488 msgid "PWM" msgstr "PWM" -#: taextras.py:467 +#: taextras.py:489 msgid "SERVO" msgstr "SERVO" -#: taextras.py:468 +#: taextras.py:490 msgid "ERROR: Check the Arduino and the number of port." msgstr "ERROR: Check the Arduino and the number of port." -#: taextras.py:469 +#: taextras.py:491 msgid "ERROR: Value must be a number from 0 to 255." msgstr "ERROR: Value must be a number from 0 to 255." -#: taextras.py:470 +#: taextras.py:492 msgid "ERROR: Value must be either HIGH or LOW, 0 or 1" msgstr "ERROR: Value must be either HIGH or LOW, 0 or 1" -#: taextras.py:471 +#: taextras.py:493 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:472 +#: taextras.py:494 msgid "ERROR: The value must be an integer." msgstr "ERROR: The value must be an integer." -#: taextras.py:473 +#: taextras.py:495 msgid "ERROR: The pin must be an integer." msgstr "ERROR: The pin must be an integer." -#: taextras.py:474 +#: taextras.py:496 +msgid "arduino" +msgstr "arduino" + +#: taextras.py:497 msgid "refresh Arduino" msgstr "refresh Arduino" -#: taextras.py:475 +#: taextras.py:498 msgid "Search for connected Arduinos." msgstr "Search for connected Arduinos." -#: taextras.py:476 +#: taextras.py:499 msgid "Arduino" msgstr "Arduino" -#: taextras.py:477 +#: taextras.py:500 msgid "set current Arduino board" msgstr "set current Arduino board" -#: taextras.py:478 +#: taextras.py:501 msgid "number of Arduinos" msgstr "number of Arduinos" -#: taextras.py:479 +#: taextras.py:502 msgid "number of Arduino boards" msgstr "number of Arduino boards" -#: taextras.py:480 +#: taextras.py:503 msgid "Arduino name" msgstr "Arduino name" -#: taextras.py:481 +#: taextras.py:504 msgid "Get the name of an Arduino." msgstr "Get the name of an Arduino." #. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) #. in which an I/O pin is being used. -#: taextras.py:484 +#: taextras.py:507 msgid "pin mode" msgstr "pin mode" -#: taextras.py:487 +#: taextras.py:510 msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." msgstr "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." -#: taextras.py:488 +#: taextras.py:511 msgid "analog write" msgstr "analog write" -#: taextras.py:490 +#: taextras.py:513 msgid "Write analog value in specified port." msgstr "Write analog value in specified port." -#: taextras.py:491 +#: taextras.py:514 msgid "analog read" msgstr "analog read" -#: taextras.py:492 +#: taextras.py:515 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." @@ -1563,108 +1636,108 @@ 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:494 +#: taextras.py:517 msgid "digital write" msgstr "digital write" -#: taextras.py:495 +#: taextras.py:518 msgid "Write digital value to specified port." msgstr "Write digital value to specified port." -#: taextras.py:496 +#: taextras.py:519 msgid "digital read" msgstr "digital read" -#: taextras.py:497 +#: taextras.py:520 msgid "Read value from digital port." msgstr "Read value from digital port." -#: taextras.py:498 +#: taextras.py:521 msgid "Set HIGH value for digital port." msgstr "Set HIGH value for digital port." -#: taextras.py:499 +#: taextras.py:522 msgid "Configure Arduino port for digital input." msgstr "Configure Arduino port for digital input." -#: taextras.py:500 +#: taextras.py:523 msgid "Configure Arduino port to drive a servo." msgstr "Configure Arduino port to drive a servo." -#: taextras.py:502 +#: taextras.py:525 msgid "Configure Arduino port for digital output." msgstr "Configure Arduino port for digital output." -#: taextras.py:503 +#: taextras.py:526 msgid "Configure Arduino port for PWM (pulse-width modulation)." msgstr "Configure Arduino port for PWM (pulse-width modulation)." -#: taextras.py:504 +#: taextras.py:527 #, python-format msgid "Not found Arduino %s" msgstr "Not found Arduino %s" -#: taextras.py:505 +#: taextras.py:528 msgid "The pin must be an integer" msgstr "The pin must be an integer" -#: taextras.py:506 +#: taextras.py:529 msgid "The device must be an integer" msgstr "The device must be an integer" #. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: plugin to control an ExpEyes device -#: taextras.py:511 +#: taextras.py:534 msgid "Palette of Expeyes blocks" msgstr "Palette of Expeyes blocks" #. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: Programmable voltage output -#: taextras.py:513 +#: taextras.py:536 msgid "set PVS" msgstr "set PVS" -#: taextras.py:514 +#: taextras.py:537 msgid "set programmable voltage output" msgstr "set programmable voltage output" #. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: Square wave 1 voltage output -#: taextras.py:516 +#: taextras.py:539 msgid "set SQR1 voltage" msgstr "set SQR1 voltage" -#: taextras.py:517 +#: taextras.py:540 msgid "set square wave 1 voltage output" msgstr "set square wave 1 voltage output" #. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: Square wave 2 voltage output -#: taextras.py:519 +#: taextras.py:542 msgid "set SQR2 voltage" msgstr "set SQR2 voltage" -#: taextras.py:520 +#: taextras.py:543 msgid "set square wave 2 voltage output" msgstr "set square wave 2 voltage output" #. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: Digital output level -#: taextras.py:522 +#: taextras.py:545 msgid "set OD1" msgstr "set OD1" -#: taextras.py:523 +#: taextras.py:546 msgid "set digital output level (OD1) low (0) or high (1)" msgstr "set digital output level (OD1) low (0) or high (1)" #. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: Input 1 voltage level -#: taextras.py:525 +#: taextras.py:548 msgid "IN1 level" msgstr "IN1 level" -#: taextras.py:526 +#: taextras.py:549 msgid "" "returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " "volts" @@ -1674,11 +1747,11 @@ msgstr "" #. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: Input 2 voltage level -#: taextras.py:529 +#: taextras.py:552 msgid "IN2 level" msgstr "IN2 level" -#: taextras.py:530 +#: taextras.py:553 msgid "" "returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " "volts" @@ -1688,11 +1761,11 @@ msgstr "" #. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: Resistive sensor voltage level -#: taextras.py:533 +#: taextras.py:556 msgid "SEN level" msgstr "SEN level" -#: taextras.py:534 +#: taextras.py:557 msgid "" "returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " "voltage level <= 2.5 volts" @@ -1700,25 +1773,25 @@ msgstr "" "returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " "voltage level <= 2.5 volts" -#: taextras.py:536 +#: taextras.py:559 msgid "capture" msgstr "capture" -#: taextras.py:537 +#: taextras.py:560 msgid "input" msgstr "input" -#: taextras.py:538 +#: taextras.py:561 msgid "samples" msgstr "samples" -#: taextras.py:539 +#: taextras.py:562 msgid "interval" msgstr "interval" #. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: MS is microseconds -#: taextras.py:541 +#: taextras.py:564 msgid "" "capture multiple samples from input at interval (MS); results pushed to FIFO" msgstr "" @@ -1726,89 +1799,89 @@ msgstr "" #. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: Analog input 1 voltage level -#: taextras.py:544 +#: taextras.py:567 msgid "A1" msgstr "A1" -#: taextras.py:545 +#: taextras.py:568 msgid "read analog input 1 voltage" msgstr "read analog input 1 voltage" #. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: Analog input 2 voltage level -#: taextras.py:547 +#: taextras.py:570 msgid "A2" msgstr "A2" -#: taextras.py:548 +#: taextras.py:571 msgid "read analog input 2 voltage" msgstr "read analog input 2 voltage" #. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: Read input 1 voltage -#: taextras.py:550 +#: taextras.py:573 msgid "IN1" msgstr "IN1" -#: taextras.py:551 +#: taextras.py:574 msgid "read input 1 voltage" msgstr "read input 1 voltage" #. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: Read input 2 voltage -#: taextras.py:553 +#: taextras.py:576 msgid "IN2" msgstr "IN2" -#: taextras.py:554 +#: taextras.py:577 msgid "read input 2 voltage" msgstr "read input 2 voltage" #. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: Read analog sensor input voltage -#: taextras.py:556 +#: taextras.py:579 msgid "SEN" msgstr "SEN" -#: taextras.py:557 +#: taextras.py:580 msgid "read analog sensor input voltage" msgstr "read analog sensor input voltage" #. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: Read square wave 1 input voltage -#: taextras.py:559 +#: taextras.py:582 msgid "SQR1" msgstr "SQR1" -#: taextras.py:560 +#: taextras.py:583 msgid "read square wave 1 voltage" msgstr "read square wave 1 voltage" #. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: Read square wave 2 input voltage -#: taextras.py:562 +#: taextras.py:585 msgid "SQR2" msgstr "SQR2" -#: taextras.py:563 +#: taextras.py:586 msgid "read square wave 2 voltage" msgstr "read square wave 2 voltage" #. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: Read programmable voltage -#: taextras.py:565 +#: taextras.py:588 msgid "PVS" msgstr "PVS" -#: taextras.py:566 +#: taextras.py:589 msgid "read programmable voltage" msgstr "read programmable voltage" -#: taextras.py:567 +#: taextras.py:590 msgid "Expeyes device not found" msgstr "Expeyes device not found" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:279 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281 msgid "resume playing video or audio" msgstr "resume playing video or audio" @@ -1823,15 +1896,15 @@ msgstr "Title" msgid "Average RGB color from camera is pushed to the stack" msgstr "Average RGB color from camera is pushed to the stack" -#: TurtleArt/tabasics.py:513 +#: TurtleArt/tabasics.py:519 msgid "yellow" msgstr "yellow" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:664 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:670 msgid "displays polar coordinates" msgstr "displays polar coordinates" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:472 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:478 msgid "emptys FILO (first-in-last-out heap)" msgstr "emptys FILO (first-in-last-out heap)" @@ -1848,39 +1921,39 @@ msgstr "camera output" msgid "push acceleration in x, y, z to heap" msgstr "push acceleration in x, y, z to heap" -#: TurtleArt/tabasics.py:827 +#: TurtleArt/tabasics.py:837 msgid "if-then operator that uses boolean operators from Numbers palette" msgstr "if-then operator that uses boolean operators from Numbers palette" -#: TurtleArt/tabasics.py:858 +#: TurtleArt/tabasics.py:868 msgid "jogs stack right" msgstr "jogs stack right" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:133 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:135 msgid "Sugar Journal media object" msgstr "Sugar Journal media object" -#: TurtleArt/tabasics.py:967 +#: TurtleArt/tabasics.py:979 msgid "box 2" msgstr "box 2" -#: TurtleArt/tabasics.py:957 +#: TurtleArt/tabasics.py:969 msgid "box 1" msgstr "box 1" -#: TurtleArtActivity.py:754 TurtleArtActivity.py:1039 turtleblocks.py:430 +#: TurtleArtActivity.py:779 TurtleArtActivity.py:1064 turtleblocks.py:453 msgid "Step" msgstr "Step" -#: TurtleArt/tabasics.py:636 +#: TurtleArt/tabasics.py:644 msgid "multiplies two numeric inputs" msgstr "multiplies two numeric inputs" -#: turtleblocks.py:423 +#: turtleblocks.py:446 msgid "Show/hide blocks" msgstr "Show/hide blocks" -#: TurtleArtActivity.py:341 TurtleArtActivity.py:1029 turtleblocks.py:421 +#: TurtleArtActivity.py:350 TurtleArtActivity.py:1054 turtleblocks.py:444 msgid "Hide palette" msgstr "Hide palette" @@ -1892,11 +1965,11 @@ msgstr "Buddies" msgid "My Turtle Art session" msgstr "My Turtle Art session" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:157 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:159 msgid "Sugar Journal video object" msgstr "Sugar Journal video object" -#: TurtleArt/tabasics.py:516 +#: TurtleArt/tabasics.py:522 msgid "cyan" msgstr "cyan" @@ -1910,50 +1983,50 @@ msgstr "" "A Logo-inspired turtle that draws colorful pictures with snap-together " "visual programming blocks" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:921 msgid "xcor of right of screen" msgstr "xcor of right of screen" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:436 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:442 msgid "Palette of extra options" msgstr "Palette of extra options" -#: TurtleArtActivity.py:702 TurtleArtActivity.py:719 TurtleArtActivity.py:758 -#: TurtleArtActivity.py:974 +#: TurtleArtActivity.py:727 TurtleArtActivity.py:744 TurtleArtActivity.py:783 +#: TurtleArtActivity.py:999 msgid "Load example" msgstr "Load example" -#: TurtleArt/tabasics.py:1060 +#: TurtleArt/tabasics.py:1074 msgid "move all blocks to trash" msgstr "move all blocks to trash" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:802 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840 msgid "list" msgstr "list" -#: turtleblocks.py:299 +#: turtleblocks.py:321 #, python-format msgid "Configuration directory not writable: %s" msgstr "Configuration directory not writable: %s" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:277 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:279 msgid "media resume" msgstr "media resume" -#: TurtleArt/tabasics.py:268 TurtleArt/tawindow.py:4248 +#: TurtleArt/tabasics.py:270 TurtleArt/tawindow.py:4302 msgid "heading" msgstr "heading" -#: TurtleArtActivity.py:951 +#: TurtleArtActivity.py:976 msgid "Sharing blocks disabled" msgstr "Sharing blocks disabled" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:239 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:241 msgid "saves turtle graphics as an SVG file in the Sugar Journal" msgstr "saves turtle graphics as an SVG file in the Sugar Journal" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:190 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:204 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:192 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:206 msgid "draws text or show media from the Journal" msgstr "draws text or show media from the Journal" @@ -1961,53 +2034,53 @@ msgstr "draws text or show media from the Journal" msgid "RFID" msgstr "RFID" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:155 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:157 msgid "video" msgstr "video" -#: TurtleArt/tabasics.py:517 +#: TurtleArt/tabasics.py:523 msgid "blue" msgstr "blue" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:656 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662 msgid "displays Cartesian coordinates" msgstr "displays Cartesian coordinates" -#: turtleblocks.py:260 +#: turtleblocks.py:282 msgid "No option action:" msgstr "No option action:" -#: TurtleArt/tabasics.py:866 +#: TurtleArt/tabasics.py:876 msgid "jogs stack down" msgstr "jogs stack down" -#: TurtleArt/tabasics.py:672 +#: TurtleArt/tabasics.py:680 msgid "modular (remainder) operator" msgstr "modular (remainder) operator" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:951 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:989 msgid "bottom y" msgstr "bottom y" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:236 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 msgid "save SVG" msgstr "save SVG" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:613 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:630 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:647 msgid "runs code found in the tamyblock.py module found in the Journal" msgstr "runs code found in the tamyblock.py module found in the Journal" -#: TurtleArt/tabasics.py:431 +#: TurtleArt/tabasics.py:435 msgid "pen down" msgstr "pen down" -#: TurtleArt/tabasics.py:789 +#: TurtleArt/tabasics.py:799 msgid "wait" msgstr "wait" -#: TurtleArt/tabasics.py:976 TurtleArt/tabasics.py:992 +#: TurtleArt/tabasics.py:988 TurtleArt/tabasics.py:1004 msgid "box" msgstr "box" @@ -2015,19 +2088,19 @@ msgstr "box" msgid "Failed to upload!" msgstr "Failed to upload!" -#: TurtleArt/tawindow.py:1156 TurtleArt/tawindow.py:1763 +#: TurtleArt/tawindow.py:1196 TurtleArt/tawindow.py:1811 msgid "shift" msgstr "shift" -#: TurtleArt/tabasics.py:922 TurtleArt/tawindow.py:4527 +#: TurtleArt/tabasics.py:934 TurtleArt/tawindow.py:4589 msgid "invokes named action stack" msgstr "invokes named action stack" -#: TurtleArt/tabasics.py:906 TurtleArt/tabasics.py:909 -#: TurtleArt/tabasics.py:917 TurtleArt/tabasics.py:921 -#: TurtleArt/tawindow.py:1449 TurtleArt/tawindow.py:1546 -#: TurtleArt/tawindow.py:1559 TurtleArt/tawindow.py:2178 -#: TurtleArt/tawindow.py:4513 +#: TurtleArt/tabasics.py:918 TurtleArt/tabasics.py:921 +#: TurtleArt/tabasics.py:929 TurtleArt/tabasics.py:933 +#: TurtleArt/tawindow.py:1496 TurtleArt/tawindow.py:1594 +#: TurtleArt/tawindow.py:1607 TurtleArt/tawindow.py:2227 +#: TurtleArt/tawindow.py:4575 msgid "action" msgstr "action" @@ -2036,20 +2109,20 @@ msgid "do-until-True operator that uses boolean operators from Numbers palette" msgstr "" "do-until-True operator that uses boolean operators from Numbers palette" -#: turtleblocks.py:91 +#: turtleblocks.py:94 msgid "usage is" msgstr "usage is" -#: TurtleArt/tabasics.py:970 +#: TurtleArt/tabasics.py:982 msgid "Variable 2 (numeric value)" msgstr "Variable 2 (numeric value)" -#: TurtleArt/tabasics.py:645 +#: TurtleArt/tabasics.py:653 msgid "divide" msgstr "divide" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:227 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:229 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:240 msgid "picture name" msgstr "picture name" @@ -2058,32 +2131,32 @@ msgstr "picture name" msgid "while" msgstr "while" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:913 msgid "the canvas width" msgstr "the canvas width" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:498 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:514 msgid "empty heap?" msgstr "empty heap?" -#: TurtleArt/tabasics.py:998 TurtleArt/tawindow.py:4556 +#: TurtleArt/tabasics.py:1010 TurtleArt/tawindow.py:4618 msgid "named variable (numeric value)" msgstr "named variable (numeric value)" -#: TurtleArt/tawindow.py:1117 TurtleArt/tawindow.py:1742 +#: TurtleArt/tawindow.py:1157 TurtleArt/tawindow.py:1790 msgid "next" msgstr "next" -#: TurtleArt/tabasics.py:825 +#: TurtleArt/tabasics.py:835 msgid "if then" msgstr "if then" -#: TurtleArt/tabasics.py:453 +#: TurtleArt/tabasics.py:457 msgid "set pen size" msgstr "set pen size" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:821 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859 msgid "presentation template: select Journal object (no description)" msgstr "presentation template: select Journal object (no description)" @@ -2092,15 +2165,15 @@ msgstr "presentation template: select Journal object (no description)" msgid "until" msgstr "until" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:265 msgid "media stop" msgstr "media stop" -#: TurtleArtActivity.py:326 turtleblocks.py:405 +#: TurtleArtActivity.py:334 turtleblocks.py:428 msgid "Turn on hover help" msgstr "Turn on hover help" -#: TurtleArt/tabasics.py:1050 +#: TurtleArt/tabasics.py:1064 msgid "permanently deletes items in trash" msgstr "permanently deletes items in trash" @@ -2113,11 +2186,11 @@ msgstr "" "#-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-#\n" "U-turn" -#: TurtleArt/tabasics.py:1008 +#: TurtleArt/tabasics.py:1020 msgid "top of Action 1 stack" msgstr "top of Action 1 stack" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571 msgid "" "a programmable block: used to add advanced single-variable math equations, e." "g., sin(x)" @@ -2125,30 +2198,30 @@ msgstr "" "a programmable block: used to add advanced single-variable math equations, e." "g., sin(x)" -#: TurtleArt/tabasics.py:784 +#: TurtleArt/tabasics.py:794 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:91 msgid "Palette of flow operators" msgstr "Palette of flow operators" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:751 msgid "top of a collapsed stack" msgstr "top of a collapsed stack" -#: TurtleArt/tabasics.py:840 TurtleArt/tabasics.py:848 +#: TurtleArt/tabasics.py:850 TurtleArt/tabasics.py:858 msgid "if-then-else operator that uses boolean operators from Numbers palette" msgstr "if-then-else operator that uses boolean operators from Numbers palette" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:351 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355 msgid "returns mouse y coordinate" msgstr "returns mouse y coordinate" -#: TurtleArt/tabasics.py:398 +#: TurtleArt/tabasics.py:402 msgid "holds current pen shade" msgstr "holds current pen shade" #. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: pitch, duration, amplitude -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:296 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:298 msgid "sinewave" msgstr "sinewave" @@ -2156,65 +2229,65 @@ msgstr "sinewave" msgid "Login failed" msgstr "Login failed" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:924 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:962 msgid "left x" msgstr "left x" # -#: TurtleArt/tabasics.py:226 +#: TurtleArt/tabasics.py:228 msgid "set heading" msgstr "seth" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:411 msgid "RGB color under the turtle is pushed to the stack" msgstr "RGB color under the turtle is pushed to the stack" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:814 msgid "declutters canvas by hiding blocks" msgstr "declutters canvas by hiding blocks" -#: TurtleArtActivity.py:1039 +#: TurtleArtActivity.py:1064 msgid "w" msgstr "w" -#: TurtleArtActivity.py:1037 +#: TurtleArtActivity.py:1062 msgid "r" msgstr "r" -#: TurtleArtActivity.py:1042 +#: TurtleArtActivity.py:1067 msgid "s" msgstr "s" -#: TurtleArtActivity.py:1030 +#: TurtleArtActivity.py:1055 msgid "p" msgstr "p" -#: TurtleArtActivity.py:1035 +#: TurtleArtActivity.py:1060 msgid "e" msgstr "e" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:551 msgid "Python chr operator" msgstr "Python chr operator" -#: TurtleArt/tabasics.py:857 +#: TurtleArt/tabasics.py:867 msgid "horizontal space" msgstr "horizontal space" -#: TurtleArtActivity.py:669 TurtleArtActivity.py:826 +#: TurtleArtActivity.py:690 TurtleArtActivity.py:851 msgid "Metric coordinates" msgstr "Metric coordinates" -#: TurtleArt/tabasics.py:902 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181 +#: TurtleArt/tabasics.py:914 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:183 msgid "string value" msgstr "string value" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:167 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:169 msgid "description" msgstr "description" -#: TurtleArt/talogo.py:572 +#: TurtleArt/talogo.py:573 msgid "I don't know how to" msgstr "I don't know how to" @@ -2222,20 +2295,20 @@ msgstr "I don't know how to" msgid "Username:" msgstr "Username:" -#: TurtleArt/tabasics.py:470 +#: TurtleArt/tabasics.py:474 msgid "starts filled polygon (used with end fill block)" msgstr "starts filled polygon (used with end fill block)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:835 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 msgid "presentation template: select four Journal objects" msgstr "presentation template: select four Journal objects" -#: TurtleArtActivity.py:608 TurtleArtActivity.py:637 TurtleArtActivity.py:750 -#: TurtleArtActivity.py:820 turtleblocks.py:407 +#: TurtleArtActivity.py:630 TurtleArtActivity.py:658 TurtleArtActivity.py:775 +#: TurtleArtActivity.py:845 turtleblocks.py:430 msgid "View" msgstr "View" -#: TurtleArt/tabasics.py:374 +#: TurtleArt/tabasics.py:378 msgid "sets gray level of the line drawn by the turtle" msgstr "sets gray level of the line drawn by the turtle" @@ -2243,68 +2316,68 @@ msgstr "sets gray level of the line drawn by the turtle" msgid "Password:" msgstr "Password:" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:415 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:419 msgid "turtle sees" msgstr "turtle sees" -#: TurtleArt/tabasics.py:872 +#: TurtleArt/tabasics.py:882 msgid "stop action" msgstr "stop action" -#: TurtleArt/tabasics.py:515 +#: TurtleArt/tabasics.py:521 msgid "green" msgstr "green" -#: TurtleArt/tabasics.py:313 TurtleArt/tabasics.py:327 -#: TurtleArt/tabasics.py:397 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1089 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1094 +#: TurtleArt/tabasics.py:317 TurtleArt/tabasics.py:331 +#: TurtleArt/tabasics.py:401 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1128 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1133 msgid "shade" msgstr "shade" -#: TurtleArt/tabasics.py:317 TurtleArt/tabasics.py:331 +#: TurtleArt/tabasics.py:321 TurtleArt/tabasics.py:335 msgid "fills the background with (color, shade)" msgstr "fills the background with (color, shade)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:227 msgid "save picture" msgstr "save picture" #: plugins/audio_sensors/audio_sensors.py:119 #: plugins/audio_sensors/audio_sensors.py:127 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:296 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:298 msgid "pitch" msgstr "pitch" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:323 msgid "returns 1 if mouse button is pressed" msgstr "returns 1 if mouse button is pressed" -#: TurtleArtActivity.py:513 TurtleArtActivity.py:672 TurtleArtActivity.py:828 +#: TurtleArtActivity.py:527 TurtleArtActivity.py:693 TurtleArtActivity.py:853 msgid "Rescale coordinates up" msgstr "Rescale coordinates up" -#: TurtleArt/tabasics.py:419 +#: TurtleArt/tabasics.py:423 msgid "pen up" msgstr "pen up" -#: TurtleArt/tabasics.py:511 +#: TurtleArt/tabasics.py:517 msgid "orange" msgstr "orange" -#: TurtleArt/tabasics.py:793 +#: TurtleArt/tabasics.py:803 msgid "pauses program execution a specified number of seconds" msgstr "pauses program execution a specified number of seconds" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:446 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:452 msgid "pushes value onto FILO (first-in last-out heap)" msgstr "pushes value onto FILO (first-in last-out heap)" -#: TurtleArt/tabasics.py:1059 +#: TurtleArt/tabasics.py:1073 msgid "clear all" msgstr "clear all" -#: TurtleArt/tabasics.py:822 TurtleArt/tabasics.py:835 +#: TurtleArt/tabasics.py:832 TurtleArt/tabasics.py:845 msgid "then" msgstr "then" @@ -2312,44 +2385,45 @@ msgstr "then" msgid "Register" msgstr "Register" -#: TurtleArt/tabasics.py:751 +#: TurtleArt/tabasics.py:759 msgid "not" msgstr "not" -#: TurtleArt/tabasics.py:839 TurtleArt/tabasics.py:847 +#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:857 msgid "if then else" msgstr "if then else" -#: TurtleArt/tabasics.py:875 +#: TurtleArt/tabasics.py:885 msgid "stops current action" msgstr "stops current action" -#: TurtleArt/tabasics.py:185 +#: TurtleArt/tabasics.py:187 msgid "turns turtle clockwise (angle in degrees)" msgstr "turns turtle clockwise (angle in degrees)" -#: TurtleArt/tabasics.py:410 +#: TurtleArt/tabasics.py:414 msgid "holds current gray level (can be used in place of a number block)" msgstr "holds current gray level (can be used in place of a number block)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 msgid "xcor of left of screen" msgstr "xcor of left of screen" -#: turtleblocks.py:402 +#: turtleblocks.py:425 msgid "Reset block size" msgstr "Reset block size" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:670 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758 +#: TurtleArt/tabasics.py:122 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:676 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:794 msgid "turtle" msgstr "turtle" -#: TurtleArt/tapalette.py:97 +#: TurtleArt/tapalette.py:98 msgid "displays next palette" msgstr "displays next palette" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:812 msgid "hide blocks" msgstr "hide blocks" @@ -2358,35 +2432,35 @@ msgstr "hide blocks" msgid "light level detected by camera" msgstr "light level detected by camera" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:554 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560 msgid "Python int operator" msgstr "Python int operator" -#: TurtleArt/tabasics.py:732 +#: TurtleArt/tabasics.py:740 msgid "logical less-than operator" msgstr "logical less-than operator" -#: TurtleArt/tabasics.py:1055 +#: TurtleArt/tabasics.py:1069 msgid "restore all blocks from trash" msgstr "restore all blocks from trash" -#: turtleblocks.py:382 +#: turtleblocks.py:404 msgid "Save" msgstr "Save" -#: TurtleArt/tabasics.py:929 +#: TurtleArt/tabasics.py:941 msgid "store in box 1" msgstr "store in box 1" -#: TurtleArt/tabasics.py:943 +#: TurtleArt/tabasics.py:955 msgid "store in box 2" msgstr "store in box 2" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:793 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831 msgid "hides the Sugar toolbars" msgstr "hides the Sugar toolbars" -#: TurtleArt/tabasics.py:241 +#: TurtleArt/tabasics.py:243 msgid "" "holds current x-coordinate value of the turtle (can be used in place of a " "number block)" @@ -2394,24 +2468,24 @@ msgstr "" "holds current x-coordinate value of the turtle (can be used in place of a " "number block)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:536 msgid "print" msgstr "print" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345 msgid "returns mouse x coordinate" msgstr "returns mouse x coordinate" -#: TurtleArt/tabasics.py:510 +#: TurtleArt/tabasics.py:516 msgid "red" msgstr "red" -#: TurtleArtActivity.py:200 TurtleArtActivity.py:781 TurtleArtActivity.py:964 -#: TurtleArtActivity.py:1000 turtleblocks.py:386 +#: TurtleArtActivity.py:207 TurtleArtActivity.py:806 TurtleArtActivity.py:989 +#: TurtleArtActivity.py:1025 turtleblocks.py:408 msgid "Save as Logo" msgstr "Save as Logo" -#: TurtleArt/tabasics.py:347 +#: TurtleArt/tabasics.py:351 msgid "sets color of the line drawn by the turtle" msgstr "sets color of the line drawn by the turtle" @@ -2428,29 +2502,30 @@ msgstr "Enable collaboration" #: plugins/audio_sensors/audio_sensors.py:75 #: plugins/camera_sensor/camera_sensor.py:63 #: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:313 msgid "Palette of sensor blocks" msgstr "Palette of sensor blocks" -#: TurtleArtActivity.py:785 TurtleArtActivity.py:988 TurtleArtActivity.py:1010 +#: TurtleArtActivity.py:810 TurtleArtActivity.py:1013 +#: TurtleArtActivity.py:1035 msgid "Load plugin" msgstr "Load plugin" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334 msgid "returns True if mouse button is pressed" msgstr "returns True if mouse button is pressed" -#: TurtleArt/tabasics.py:707 +#: TurtleArt/tabasics.py:715 msgid "number" msgstr "number" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:359 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363 msgid "query keyboard" msgstr "query keyboard" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:714 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:926 msgid "top" msgstr "top" @@ -2458,7 +2533,7 @@ msgstr "top" msgid "Submit to Web" msgstr "Submit to Web" -#: TurtleArtActivity.py:664 TurtleArtActivity.py:822 turtleblocks.py:392 +#: TurtleArtActivity.py:685 TurtleArtActivity.py:847 turtleblocks.py:414 msgid "Cartesian coordinates" msgstr "Cartesian coordinates" @@ -2466,45 +2541,45 @@ msgstr "Cartesian coordinates" msgid "Nickname" msgstr "Nickname" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:215 msgid "set scale" msgstr "set scale" -#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:2156 -#: TurtleArtActivity.py:775 +#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:2205 +#: TurtleArtActivity.py:800 msgid "Share selected blocks" msgstr "Share selected blocks" -#: TurtleArt/tabasics.py:520 +#: TurtleArt/tabasics.py:526 msgid "white" msgstr "white" -#: TurtleArt/tabasics.py:892 +#: TurtleArt/tabasics.py:904 msgid "connects action to toolbar run buttons" msgstr "connects action to toolbar run buttons" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:428 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:432 msgid "elapsed time (in seconds) since program started" msgstr "elapsed time (in seconds) since program started" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:297 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299 msgid "amplitude" msgstr "amplitude" -#: TurtleArt/tawindow.py:1634 TurtleArt/tawindow.py:1673 +#: TurtleArt/tawindow.py:1682 TurtleArt/tawindow.py:1721 #: gnome_plugins/uploader_plugin.py:144 msgid "Cancel" msgstr "Cancel" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:899 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:937 msgid "the canvas height" msgstr "the canvas height" -#: TurtleArt/tabasics.py:619 +#: TurtleArt/tabasics.py:627 msgid "minus" msgstr "minus" -#: TurtleArt/tabasics.py:760 TurtleArt/tabasics.py:763 +#: TurtleArt/tabasics.py:768 TurtleArt/tabasics.py:771 msgid "and" msgstr "and" @@ -2512,17 +2587,17 @@ msgstr "and" msgid "top of a collapsible stack" msgstr "top of a collapsible stack" -#: TurtleArt/talogo.py:631 +#: TurtleArt/talogo.py:632 msgid "as input" msgstr "as input" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:605 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:622 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:638 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:611 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:628 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644 msgid "Python block" msgstr "Python block" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:255 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257 msgid "media wait" msgstr "media wait" @@ -2531,29 +2606,25 @@ msgstr "media wait" msgid "acceleration" msgstr "acceleration" -#: TurtleArt/tabasics.py:491 +#: TurtleArt/tabasics.py:495 msgid "holds current pen size (can be used in place of a number block)" msgstr "holds current pen size (can be used in place of a number block)" -#: TurtleArt/tabasics.py:343 -msgid "set color" -msgstr "set color" - -#: TurtleArt/tabasics.py:691 +#: TurtleArt/tabasics.py:699 msgid "min" msgstr "min" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:735 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:759 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 msgid "loads a block" msgstr "loads a block" -#: TurtleArt/tabasics.py:308 +#: TurtleArt/tabasics.py:312 msgid "Palette of pen commands" msgstr "Palette of pen commands" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:459 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:465 msgid "shows values in FILO (first-in last-out heap)" msgstr "shows values in FILO (first-in last-out heap)" @@ -2562,108 +2633,108 @@ msgid "do-while-True operator that uses boolean operators from Numbers palette" msgstr "" "do-while-True operator that uses boolean operators from Numbers palette" -#: turtleblocks.py:389 +#: turtleblocks.py:411 msgid "File" msgstr "File" -#: TurtleArt/tabasics.py:754 +#: TurtleArt/tabasics.py:762 msgid "logical NOT operator" msgstr "logical NOT operator" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:867 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:905 msgid "ycor of bottom of screen" msgstr "ycor of bottom of screen" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:828 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:866 msgid "presentation template: select Journal object (with description)" msgstr "presentation template: select Journal object (with description)" -#: TurtleArt/tabasics.py:601 +#: TurtleArt/tabasics.py:609 msgid "Palette of numeric operators" msgstr "Palette of numeric operators" -#: TurtleArt/tabasics.py:633 +#: TurtleArt/tabasics.py:641 msgid "multiply" msgstr "multiply" -#: TurtleArt/tabasics.py:800 +#: TurtleArt/tabasics.py:810 msgid "forever" msgstr "forever" -#: TurtleArtActivity.py:1302 +#: TurtleArtActivity.py:1327 #, python-format msgid "Plugin %s already installed." msgstr "Plugin %s already installed." -#: TurtleArt/tabasics.py:361 +#: TurtleArt/tabasics.py:365 msgid "sets shade of the line drawn by the turtle" msgstr "sets shade of the line drawn by the turtle" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:288 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:290 msgid "speaks text" msgstr "speaks text" -#: TurtleArtActivity.py:265 +#: TurtleArtActivity.py:272 msgid "snapshot" msgstr "snapshot" -#: TurtleArt/tabasics.py:156 +#: TurtleArt/tabasics.py:158 msgid "clean" msgstr "clean" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:849 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:880 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887 msgid "presentation template: select two Journal objects" msgstr "presentation template: select two Journal objects" -#: TurtleArtActivity.py:675 TurtleArtActivity.py:830 turtleblocks.py:398 +#: TurtleArtActivity.py:696 TurtleArtActivity.py:855 turtleblocks.py:421 msgid "Grow blocks" msgstr "Grow blocks" -#: TurtleArtActivity.py:661 TurtleArtActivity.py:821 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:791 +#: TurtleArtActivity.py:682 TurtleArtActivity.py:846 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:829 msgid "Fullscreen" msgstr "Fullscreen" -#: turtleblocks.py:275 +#: turtleblocks.py:297 msgid "File not found" msgstr "File not found" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 msgid "show" msgstr "show" -#: TurtleArt/tabasics.py:899 TurtleArt/tabasics.py:900 -#: TurtleArt/tabasics.py:901 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:178 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:179 +#: TurtleArt/tabasics.py:911 TurtleArt/tabasics.py:912 +#: TurtleArt/tabasics.py:913 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:201 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:203 msgid "text" msgstr "text" -#: TurtleArt/tabasics.py:691 +#: TurtleArt/tabasics.py:699 msgid "random" msgstr "random" -#: TurtleArt/tabasics.py:719 +#: TurtleArt/tabasics.py:727 msgid "logical greater-than operator" msgstr "logical greater-than operator" -#: TurtleArt/tabasics.py:173 +#: TurtleArt/tabasics.py:175 msgid "turns turtle counterclockwise (angle in degrees)" msgstr "turns turtle counterclockwise (angle in degrees)" -#: TurtleArt/tabasics.py:521 +#: TurtleArt/tabasics.py:527 msgid "black" msgstr "black" -#: TurtleArt/tabasics.py:684 +#: TurtleArt/tabasics.py:692 msgid "calculates square root" msgstr "calculates square root" -#: TurtleArt/tabasics.py:255 +#: TurtleArt/tabasics.py:257 msgid "" "holds current y-coordinate value of the turtle (can be used in place of a " "number block)" @@ -2671,11 +2742,11 @@ msgstr "" "holds current y-coordinate value of the turtle (can be used in place of a " "number block)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:338 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:342 msgid "mouse x" msgstr "mouse x" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352 msgid "mouse y" msgstr "mouse y" @@ -2683,27 +2754,27 @@ msgstr "mouse y" msgid "stop" msgstr "stop" -#: TurtleArt/tabasics.py:716 +#: TurtleArt/tabasics.py:724 msgid "greater than" msgstr "greater than" -#: TurtleArt/tabasics.py:240 TurtleArt/tawindow.py:4247 +#: TurtleArt/tabasics.py:242 TurtleArt/tawindow.py:4301 msgid "xcor" msgstr "xcor" -#: TurtleArtActivity.py:759 turtleblocks.py:437 util/helpbutton.py:44 +#: TurtleArtActivity.py:784 turtleblocks.py:460 util/helpbutton.py:44 msgid "Help" msgstr "Help" -#: turtleblocks.py:477 +#: turtleblocks.py:500 msgid "Save project?" msgstr "Save project?" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:680 msgid "chooses which turtle to command" msgstr "chooses which turtle to command" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:942 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:980 msgid "right x" msgstr "right x" @@ -2712,32 +2783,32 @@ msgstr "right x" msgid "light level detected by light sensor" msgstr "light level detected by light sensor" -#: TurtleArtActivity.py:1203 TurtleArtActivity.py:1208 -#: TurtleArtActivity.py:1288 +#: TurtleArtActivity.py:1228 TurtleArtActivity.py:1233 +#: TurtleArtActivity.py:1313 msgid "Plugin could not be installed." msgstr "Plugin could not be installed." -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:368 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:372 msgid "keyboard" msgstr "keyboard" -#: TurtleArt/tabasics.py:195 +#: TurtleArt/tabasics.py:197 msgid "arc" msgstr "arc" -#: TurtleArt/tabasics.py:195 +#: TurtleArt/tabasics.py:197 msgid "radius" msgstr "radius" -#: TurtleArtActivity.py:666 TurtleArtActivity.py:824 turtleblocks.py:394 +#: TurtleArtActivity.py:687 TurtleArtActivity.py:849 turtleblocks.py:416 msgid "Polar coordinates" msgstr "Polar coordinates" -#: TurtleArt/tabasics.py:357 +#: TurtleArt/tabasics.py:361 msgid "set shade" msgstr "set shade" -#: TurtleArt/tabasics.py:764 +#: TurtleArt/tabasics.py:772 msgid "logical AND operator" msgstr "logical AND operator" @@ -2749,23 +2820,19 @@ msgstr "" "You must have an account at http://turtleartsite.sugarlabs.org to upload " "your project." -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 -msgid "palette" -msgstr "palette" - -#: TurtleArtActivity.py:753 TurtleArtActivity.py:1037 turtleblocks.py:429 +#: TurtleArtActivity.py:778 TurtleArtActivity.py:1062 turtleblocks.py:452 msgid "Run" msgstr "Run" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:462 msgid "show heap" msgstr "show heap" -#: TurtleArt/tabasics.py:230 +#: TurtleArt/tabasics.py:232 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.)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:759 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795 msgid "selects a palette" msgstr "selects a palette" @@ -2779,19 +2846,19 @@ msgid "Title:" msgstr "Title:" #: plugins/camera_sensor/camera_sensor.py:67 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:125 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127 msgid "Palette of media objects" msgstr "Palette of media objects" -#: TurtleArtActivity.py:653 +#: TurtleArtActivity.py:674 msgid "Restore blocks from trash" msgstr "Restore blocks from trash" -#: TurtleArt/tabasics.py:884 +#: TurtleArt/tabasics.py:896 msgid "Palette of variable blocks" msgstr "Palette of variable blocks" -#: TurtleArt/tabasics.py:708 +#: TurtleArt/tabasics.py:716 msgid "used as numeric input in mathematic operators" msgstr "used as numeric input in mathematic operators" @@ -2805,7 +2872,7 @@ msgstr "Upload" msgid "Server" msgstr "Server" -#: TurtleArt/tabasics.py:960 +#: TurtleArt/tabasics.py:972 msgid "Variable 1 (numeric value)" msgstr "Variable 1 (numeric value)" @@ -2813,68 +2880,68 @@ msgstr "Variable 1 (numeric value)" msgid "Neighborhood" msgstr "Neighborhood" -#: TurtleArt/tabasics.py:611 +#: TurtleArt/tabasics.py:619 msgid "adds two alphanumeric inputs" msgstr "adds two alphanumeric inputs" -#: TurtleArt/tabasics.py:740 +#: TurtleArt/tabasics.py:748 msgid "equal" msgstr "equal" -#: TurtleArt/tabasics.py:835 +#: TurtleArt/tabasics.py:845 msgid "else" msgstr "else" -#: TurtleArt/talogo.py:630 +#: TurtleArt/talogo.py:631 msgid "doesn't like" msgstr "doesn't like" -#: turtleblocks.py:475 +#: turtleblocks.py:498 msgid "You have unsaved work. Would you like to save before quitting?" msgstr "You have unsaved work. Would you like to save before quitting?" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:785 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:823 msgid "restores hidden blocks" msgstr "restores hidden blocks" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:720 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:743 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:767 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779 msgid "load" msgstr "load" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:265 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:267 msgid "stop video or audio" msgstr "stop video or audio" -#: TurtleArt/tabasics.py:422 +#: TurtleArt/tabasics.py:426 msgid "Turtle will not draw when moved." msgstr "Turtle will not draw when moved." #. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: pop removes a new item from the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489 msgid "pop" msgstr "pop" -#: TurtleArt/tabasics.py:490 +#: TurtleArt/tabasics.py:494 msgid "pen size" msgstr "pen size" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:706 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:732 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742 msgid "turtle shell" msgstr "turtle shell" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:300 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302 msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)" msgstr "plays a sinewave at frequency, amplitude, and duration (in seconds)" -#: TurtleArt/tabasics.py:680 +#: TurtleArt/tabasics.py:688 msgid "√" msgstr "√" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:287 msgid "speak" msgstr "speak" @@ -2882,50 +2949,50 @@ msgstr "speak" msgid "read value from RFID device" msgstr "read value from RFID device" -#: TurtleArt/tabasics.py:199 +#: TurtleArt/tabasics.py:201 msgid "moves turtle along an arc" msgstr "moves turtle along an arc" -#: TurtleArt/tabasics.py:744 +#: TurtleArt/tabasics.py:752 msgid "logical equal-to operator" msgstr "logical equal-to operator" -#: TurtleArt/tabasics.py:508 +#: TurtleArt/tabasics.py:514 msgid "Palette of pen colors" msgstr "Palette of pen colors" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274 msgid "pause video or audio" msgstr "pause video or audio" -#: TurtleArt/tabasics.py:934 +#: TurtleArt/tabasics.py:946 msgid "stores numeric value in Variable 1" msgstr "stores numeric value in Variable 1" -#: TurtleArt/tabasics.py:948 +#: TurtleArt/tabasics.py:960 msgid "stores numeric value in Variable 2" msgstr "stores numeric value in Variable 2" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:698 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:707 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:743 msgid "put a custom 'shell' on the turtle" msgstr "put a custom 'shell' on the turtle" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:327 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:320 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:331 msgid "button down" msgstr "button down" -#: TurtleArt/tabasics.py:146 +#: TurtleArt/tabasics.py:148 msgid "moves turtle backward" msgstr "moves turtle backward" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:891 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:929 msgid "ycor of top of screen" msgstr "ycor of top of screen" -#: TurtleArt/talogo.py:384 TurtleArtActivity.py:383 TurtleArtActivity.py:756 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1428 +#: TurtleArt/talogo.py:384 TurtleArtActivity.py:392 TurtleArtActivity.py:781 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1469 msgid "Show blocks" msgstr "Show blocks" @@ -2941,23 +3008,23 @@ msgstr "save" msgid "Colors" msgstr "Colors" -#: TurtleArt/tabasics.py:457 +#: TurtleArt/tabasics.py:461 msgid "sets size of the line drawn by the turtle" msgstr "sets size of the line drawn by the turtle" -#: TurtleArtActivity.py:980 turtleblocks.py:380 +#: TurtleArtActivity.py:1005 turtleblocks.py:402 msgid "Open" msgstr "Open" -#: TurtleArt/tawindow.py:1102 TurtleArt/tawindow.py:1103 +#: TurtleArt/tawindow.py:1142 TurtleArt/tawindow.py:1143 msgid "orientation" msgstr "orientation" -#: TurtleArt/tabasics.py:254 TurtleArt/tawindow.py:4248 +#: TurtleArt/tabasics.py:256 TurtleArt/tawindow.py:4302 msgid "ycor" msgstr "ycor" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:579 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585 msgid "" "a programmable block: used to add advanced multi-variable math equations, e." "g., sqrt(x*x+y*y)" @@ -2965,47 +3032,47 @@ msgstr "" "a programmable block: used to add advanced multi-variable math equations, e." "g., sqrt(x*x+y*y)" -#: TurtleArt/tabasics.py:822 TurtleArt/tabasics.py:835 +#: TurtleArt/tabasics.py:832 TurtleArt/tabasics.py:845 msgid "if" msgstr "if" -#: TurtleArt/tabasics.py:214 TurtleArt/tabasics.py:292 +#: TurtleArt/tabasics.py:216 TurtleArt/tabasics.py:294 msgid "" "moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." msgstr "" "moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:561 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:575 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:589 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:567 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:581 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595 msgid "Python" msgstr "Python" -#: TurtleArtActivity.py:760 turtleblocks.py:432 +#: TurtleArtActivity.py:785 turtleblocks.py:455 msgid "Stop" msgstr "Stop" -#: TurtleArt/tabasics.py:1014 TurtleArt/tabasics.py:1034 +#: TurtleArt/tabasics.py:1026 TurtleArt/tabasics.py:1046 msgid "action 2" msgstr "action 2" -#: TurtleArt/tabasics.py:1005 TurtleArt/tabasics.py:1024 +#: TurtleArt/tabasics.py:1017 TurtleArt/tabasics.py:1036 msgid "action 1" msgstr "action 1" -#: TurtleArt/tabasics.py:479 +#: TurtleArt/tabasics.py:483 msgid "end fill" msgstr "end fill" -#: TurtleArtActivity.py:649 TurtleArtActivity.py:803 turtleblocks.py:410 +#: TurtleArtActivity.py:670 TurtleArtActivity.py:828 turtleblocks.py:433 msgid "Copy" msgstr "Copy" -#: TurtleArtActivity.py:651 TurtleArtActivity.py:804 turtleblocks.py:411 +#: TurtleArtActivity.py:672 TurtleArtActivity.py:829 turtleblocks.py:434 msgid "Paste" msgstr "Paste" -#: TurtleArt/talogo.py:512 +#: TurtleArt/talogo.py:513 msgid "did not output to" msgstr "did not output to" @@ -3017,44 +3084,44 @@ msgstr "Activities" msgid "Upload to Web" msgstr "Upload to Web" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:469 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:475 msgid "empty heap" msgstr "empty heap" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:487 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:493 msgid "pops value off FILO (first-in last-out heap)" msgstr "pops value off FILO (first-in last-out heap)" -#: TurtleArtActivity.py:752 TurtleArtActivity.py:1035 turtleblocks.py:428 +#: TurtleArtActivity.py:777 TurtleArtActivity.py:1060 turtleblocks.py:451 msgid "Clean" msgstr "Clean" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:767 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:805 msgid "Palette of presentation templates" msgstr "Palette of presentation templates" -#: TurtleArt/tabasics.py:195 +#: TurtleArt/tabasics.py:197 msgid "angle" msgstr "angle" -#: TurtleArt/tabasics.py:658 +#: TurtleArt/tabasics.py:666 msgid "identity" msgstr "identity" -#: TurtleArtActivity.py:641 TurtleArtActivity.py:748 TurtleArtActivity.py:777 -#: TurtleArtActivity.py:779 TurtleArtActivity.py:956 +#: TurtleArtActivity.py:662 TurtleArtActivity.py:773 TurtleArtActivity.py:802 +#: TurtleArtActivity.py:804 TurtleArtActivity.py:981 msgid "Save/Load" msgstr "Save/Load" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:933 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:971 msgid "top y" msgstr "top y" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:143 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:145 msgid "audio" msgstr "audio" -#: turtleblocks.py:425 +#: turtleblocks.py:448 msgid "Tools" msgstr "Tools" @@ -3062,16 +3129,16 @@ msgstr "Tools" msgid "Port" msgstr "Port" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:521 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527 msgid "comment" msgstr "comment" -#: TurtleArt/tabasics.py:622 +#: TurtleArt/tabasics.py:630 msgid "subtracts bottom numeric input from top numeric input" msgstr "subtracts bottom numeric input from top numeric input" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272 msgid "media pause" msgstr "media pause" @@ -3079,15 +3146,15 @@ msgstr "media pause" msgid "push destination rgb value to heap" msgstr "push destination rgb value to heap" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365 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:654 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660 msgid "Cartesian" msgstr "Cartesian" -#: TurtleArt/tabasics.py:159 +#: TurtleArt/tabasics.py:161 msgid "clears the screen and reset the turtle" msgstr "clears the screen and reset the turtle" @@ -3096,49 +3163,49 @@ msgstr "clears the screen and reset the turtle" msgid "raw microphone input signal" msgstr "raw microphone input signal" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:421 msgid "returns the color that the turtle \"sees\"" msgstr "returns the color that the turtle \"sees\"" -#: TurtleArt/tabasics.py:1027 +#: TurtleArt/tabasics.py:1039 msgid "invokes Action 1 stack" msgstr "invokes Action 1 stack" -#: TurtleArt/tabasics.py:124 +#: TurtleArt/tabasics.py:126 msgid "Palette of turtle commands" msgstr "Palette of turtle commands" -#: TurtleArt/tabasics.py:804 +#: TurtleArt/tabasics.py:814 msgid "loops forever" msgstr "loops forever" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:200 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:202 msgid "show aligned" msgstr "show aligned" -#: TurtleArtActivity.py:1303 +#: TurtleArtActivity.py:1328 #, python-format msgid "Do you want to reinstall %s?" msgstr "Do you want to reinstall %s?" -#: TurtleArtActivity.py:782 TurtleArtActivity.py:983 TurtleArtActivity.py:1005 -#: turtleblocks.py:381 +#: TurtleArtActivity.py:807 TurtleArtActivity.py:1008 +#: TurtleArtActivity.py:1030 turtleblocks.py:403 msgid "Load project" msgstr "Load project" -#: TurtleArtActivity.py:635 TurtleArtActivity.py:751 +#: TurtleArtActivity.py:656 TurtleArtActivity.py:776 msgid "Project" msgstr "Project" -#: turtleblocks.py:431 +#: turtleblocks.py:454 msgid "Debug" msgstr "Debug" -#: TurtleArtActivity.py:318 TurtleArtActivity.py:681 TurtleArtActivity.py:832 +#: TurtleArtActivity.py:325 TurtleArtActivity.py:702 TurtleArtActivity.py:857 msgid "Turn off hover help" msgstr "Turn off hover help" -#: TurtleArt/tabasics.py:668 TurtleArt/tabasics.py:669 +#: TurtleArt/tabasics.py:676 TurtleArt/tabasics.py:677 msgid "mod" msgstr "mod" @@ -3146,15 +3213,15 @@ msgstr "mod" msgid "Password" msgstr "Password" -#: TurtleArt/tabasics.py:865 +#: TurtleArt/tabasics.py:875 msgid "vertical space" msgstr "vertical space" -#: TurtleArtActivity.py:1284 +#: TurtleArtActivity.py:1309 msgid "Please restart Turtle Art in order to use the plugin." msgstr "Please restart Turtle Art in order to use the plugin." -#: TurtleArt/tabasics.py:481 +#: TurtleArt/tabasics.py:485 msgid "completes filled polygon (used with start fill block)" msgstr "completes filled polygon (used with start fill block)" @@ -3162,72 +3229,72 @@ msgstr "completes filled polygon (used with start fill block)" msgid "Share" msgstr "Share" -#: TurtleArt/tabasics.py:728 +#: TurtleArt/tabasics.py:736 msgid "less than" msgstr "less than" -#: TurtleArt/tabasics.py:681 +#: TurtleArt/tabasics.py:689 msgid "square root" msgstr "square root" -#: turtleblocks.py:396 +#: turtleblocks.py:419 msgid "Rescale coordinates" msgstr "Rescale coordinates" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:821 msgid "show blocks" msgstr "show blocks" -#: turtleblocks.py:388 +#: turtleblocks.py:410 msgid "Quit" msgstr "Quit" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:169 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:171 msgid "Sugar Journal description field" msgstr "Sugar Journal description field" -#: TurtleArt/tabasics.py:371 +#: TurtleArt/tabasics.py:375 msgid "set gray" msgstr "set gray" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:806 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:844 msgid "presentation bulleted list" msgstr "presentation bulleted list" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:297 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299 msgid "duration" msgstr "duration" -#: turtleblocks.py:375 +#: turtleblocks.py:397 msgid "New" msgstr "New" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:523 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 msgid "places a comment in your code" msgstr "places a comment in your code" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:408 msgid "read pixel" msgstr "read pixel" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 msgid "scale" msgstr "scale" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:864 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902 msgid "bottom" msgstr "bottom" -#: TurtleArt/tabasics.py:518 +#: TurtleArt/tabasics.py:524 msgid "purple" msgstr "purple" -#: TurtleArtActivity.py:509 +#: TurtleArtActivity.py:518 msgid "Rescale coordinates down" msgstr "Rescale coordinates down" #: TurtleArt/tautils.py:593 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:712 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:748 msgid "click to open" msgstr "click to open" @@ -3244,15 +3311,15 @@ msgstr "Configuration" msgid "Description:" msgstr "Description:" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:132 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:134 msgid "journal" msgstr "journal" -#: TurtleArt/tabasics.py:1049 +#: TurtleArt/tabasics.py:1063 msgid "empty trash" msgstr "empty trash" -#: TurtleArt/tabasics.py:434 +#: TurtleArt/tabasics.py:438 msgid "Turtle will draw when moved." msgstr "Turtle will draw when moved." @@ -3260,56 +3327,57 @@ msgstr "Turtle will draw when moved." msgid "Load..." msgstr "Load..." -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:145 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:147 msgid "Sugar Journal audio object" msgstr "Sugar Journal audio object" -#: TurtleArt/talogo.py:374 TurtleArtActivity.py:755 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1437 +#: TurtleArt/talogo.py:374 TurtleArt/tawindow.py:1457 TurtleArtActivity.py:780 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1478 msgid "Stop turtle" msgstr "Stop turtle" -#: turtleblocks.py:433 +#: turtleblocks.py:456 msgid "Turtle" msgstr "Turtle" -#: TurtleArt/tapalette.py:98 +#: TurtleArt/tapalette.py:99 msgid "changes the orientation of the palette of blocks" msgstr "changes the orientation of the palette of blocks" -#: TurtleArt/tabasics.py:976 TurtleArt/tawindow.py:4581 +#: TurtleArt/tabasics.py:988 TurtleArt/tawindow.py:4643 msgid "store in" msgstr "store in" -#: TurtleArt/talogo.py:388 TurtleArtActivity.py:387 TurtleArtActivity.py:1041 +#: TurtleArt/talogo.py:388 TurtleArtActivity.py:396 TurtleArtActivity.py:1066 msgid "Hide blocks" msgstr "Hide blocks" -#: TurtleArtActivity.py:786 TurtleArtActivity.py:991 TurtleArtActivity.py:1013 +#: TurtleArtActivity.py:811 TurtleArtActivity.py:1016 +#: TurtleArtActivity.py:1038 msgid "Load Python block" msgstr "Load Python block" -#: TurtleArt/tabasics.py:607 +#: TurtleArt/tabasics.py:615 msgid "plus" msgstr "plus" -#: TurtleArt/tabasics.py:771 TurtleArt/tabasics.py:774 +#: TurtleArt/tabasics.py:779 TurtleArt/tabasics.py:782 msgid "or" msgstr "or" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:814 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:852 msgid "presentation template: list of bullets" msgstr "presentation template: list of bullets" -#: TurtleArt/tabasics.py:660 +#: TurtleArt/tabasics.py:668 msgid "identity operator used for extending blocks" msgstr "identity operator used for extending blocks" -#: TurtleArtActivity.py:678 TurtleArtActivity.py:831 turtleblocks.py:400 +#: TurtleArtActivity.py:699 TurtleArtActivity.py:856 turtleblocks.py:423 msgid "Shrink blocks" msgstr "Shrink blocks" -#: TurtleArt/tabasics.py:269 +#: TurtleArt/tabasics.py:271 msgid "" "holds current heading value of the turtle (can be used in place of a number " "block)" @@ -3317,55 +3385,55 @@ msgstr "" "holds current heading value of the turtle (can be used in place of a number " "block)" -#: TurtleArt/tawindow.py:4362 +#: TurtleArt/tawindow.py:4424 msgid "image" msgstr "image" -#: TurtleArt/tabasics.py:695 +#: TurtleArt/tabasics.py:703 msgid "returns random number between minimum (top) and maximum (bottom) values" msgstr "" "returns random number between minimum (top) and maximum (bottom) values" -#: TurtleArt/tabasics.py:385 +#: TurtleArt/tabasics.py:389 msgid "holds current pen color (can be used in place of a number block)" msgstr "holds current pen color (can be used in place of a number block)" -#: TurtleArtActivity.py:335 turtleblocks.py:419 +#: TurtleArtActivity.py:344 turtleblocks.py:442 msgid "Show palette" msgstr "Show palette" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:228 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:230 msgid "saves a picture to the Sugar Journal" msgstr "saves a picture to the Sugar Journal" -#: TurtleArtActivity.py:273 TurtleArtActivity.py:715 TurtleArtActivity.py:757 -#: TurtleArtActivity.py:970 TurtleArtActivity.py:1003 +#: TurtleArtActivity.py:280 TurtleArtActivity.py:740 TurtleArtActivity.py:782 +#: TurtleArtActivity.py:995 TurtleArtActivity.py:1028 msgid "Save snapshot" msgstr "Save snapshot" -#: TurtleArt/tabasics.py:889 pysamples/grecord.py:214 +#: TurtleArt/tabasics.py:901 pysamples/grecord.py:214 msgid "start" msgstr "start" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:501 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:511 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:507 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:517 msgid "returns True if heap is empty" msgstr "returns True if heap is empty" -#: TurtleArt/tabasics.py:133 +#: TurtleArt/tabasics.py:135 msgid "moves turtle forward" msgstr "moves turtle forward" -#: TurtleArt/tabasics.py:129 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 +#: TurtleArt/tabasics.py:131 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:770 msgid "forward" msgstr "forward" -#: TurtleArt/tabasics.py:980 TurtleArt/tabasics.py:995 -#: TurtleArt/tawindow.py:1453 TurtleArt/tawindow.py:1585 -#: TurtleArt/tawindow.py:2182 TurtleArt/tawindow.py:4542 -#: TurtleArt/tawindow.py:4572 +#: TurtleArt/tabasics.py:992 TurtleArt/tabasics.py:1007 +#: TurtleArt/tawindow.py:1500 TurtleArt/tawindow.py:1633 +#: TurtleArt/tawindow.py:2231 TurtleArt/tawindow.py:4604 +#: TurtleArt/tawindow.py:4634 msgid "my box" msgstr "my box" @@ -3373,31 +3441,31 @@ msgstr "my box" msgid "Account ID" msgstr "Account ID" -#: TurtleArt/tawindow.py:1467 +#: TurtleArt/tawindow.py:1514 msgid "Select blocks to share" msgstr "Select blocks to share" -#: TurtleArt/tabasics.py:142 +#: TurtleArt/tabasics.py:144 msgid "back" msgstr "back" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:217 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:219 msgid "sets the scale of media" msgstr "sets the scale of media" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:250 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252 msgid "holds current scale value" msgstr "holds current scale value" -#: TurtleArt/tabasics.py:911 +#: TurtleArt/tabasics.py:923 msgid "top of nameable action stack" msgstr "top of nameable action stack" -#: TurtleArt/tabasics.py:981 TurtleArt/tawindow.py:4586 +#: TurtleArt/tabasics.py:993 TurtleArt/tawindow.py:4648 msgid "stores numeric value in named variable" msgstr "stores numeric value in named variable" -#: TurtleArt/tabasics.py:775 +#: TurtleArt/tabasics.py:783 msgid "logical OR operator" msgstr "logical OR operator" @@ -3408,7 +3476,7 @@ msgstr "logical OR operator" msgid "microphone input voltage" msgstr "microphone input voltage" -#: TurtleArt/tabasics.py:816 +#: TurtleArt/tabasics.py:826 msgid "loops specified number of times" msgstr "loops specified number of times" @@ -3416,23 +3484,23 @@ msgstr "loops specified number of times" msgid "Save..." msgstr "Save..." -#: TurtleArt/tabasics.py:1037 +#: TurtleArt/tabasics.py:1049 msgid "invokes Action 2 stack" msgstr "invokes Action 2 stack" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:746 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:782 msgid "setxy" msgstr "setxy" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:953 msgid "title y" msgstr "title y" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:906 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:944 msgid "title x" msgstr "title x" -#: TurtleArt/tabasics.py:313 TurtleArt/tabasics.py:326 +#: TurtleArt/tabasics.py:317 TurtleArt/tabasics.py:330 msgid "fill screen" msgstr "fill screen" @@ -3440,37 +3508,38 @@ msgstr "fill screen" msgid "other" msgstr "other" -#: turtleblocks.py:383 +#: turtleblocks.py:405 msgid "Save as" msgstr "Save as" -#: TurtleArt/tabasics.py:210 TurtleArt/tabasics.py:288 +#: TurtleArt/tabasics.py:212 TurtleArt/tabasics.py:290 msgid "set xy" msgstr "set xy" -#: TurtleArt/tabasics.py:1045 +#: TurtleArt/tabasics.py:1055 TurtleArt/tabasics.py:1059 +#: TurtleArt/tapalette.py:138 TurtleArt/tapalette.py:139 msgid "trash" msgstr "trash" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:668 msgid "polar" msgstr "polar" -#: TurtleArt/tabasics.py:811 TurtleArt/tabasics.py:815 +#: TurtleArt/tabasics.py:821 TurtleArt/tabasics.py:825 msgid "repeat" msgstr "repeat" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 msgid "wait for current video or audio to complete" msgstr "wait for current video or audio to complete" -#: TurtleArtActivity.py:257 TurtleArtActivity.py:780 TurtleArtActivity.py:961 -#: TurtleArtActivity.py:997 turtleblocks.py:384 +#: TurtleArtActivity.py:264 TurtleArtActivity.py:805 TurtleArtActivity.py:986 +#: TurtleArtActivity.py:1022 turtleblocks.py:406 msgid "Save as image" msgstr "Save as image" -#: TurtleArtActivity.py:603 TurtleArtActivity.py:639 TurtleArtActivity.py:749 -#: TurtleArtActivity.py:802 turtleblocks.py:416 +#: TurtleArtActivity.py:625 TurtleArtActivity.py:660 TurtleArtActivity.py:774 +#: TurtleArtActivity.py:827 turtleblocks.py:439 msgid "Edit" msgstr "Edit" @@ -3481,39 +3550,39 @@ msgstr "Edit" msgid "microphone input resistance" msgstr "microphone input resistance" -#: TurtleArt/tabasics.py:1017 +#: TurtleArt/tabasics.py:1029 msgid "top of Action 2 stack" msgstr "top of Action 2 stack" -#: TurtleArt/tabasics.py:648 +#: TurtleArt/tabasics.py:656 msgid "" "divides top numeric input (numerator) by bottom numeric input (denominator)" msgstr "" "divides top numeric input (numerator) by bottom numeric input (denominator)" -#: TurtleArt/tabasics.py:691 +#: TurtleArt/tabasics.py:699 msgid "max" msgstr "max" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:534 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540 msgid "prints value in status block at bottom of the screen" msgstr "prints value in status block at bottom of the screen" -#: TurtleArt/tabasics.py:468 +#: TurtleArt/tabasics.py:472 msgid "start fill" msgstr "start fill" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:372 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376 msgid "holds results of query-keyboard block as ASCII" msgstr "holds results of query-keyboard block as ASCII" #. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: push adds a new item to the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:443 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:449 msgid "push" msgstr "push" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:599 msgid "" "a programmable block: used to add advanced multi-variable math equations, e." "g., sin(x+y+z)" @@ -3521,11 +3590,11 @@ msgstr "" "a programmable block: used to add advanced multi-variable math equations, e." "g., sin(x+y+z)" -#: TurtleArt/tabasics.py:1054 +#: TurtleArt/tabasics.py:1068 msgid "restore all" msgstr "restore all" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:287 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:289 msgid "hello" msgstr "hello" @@ -3533,45 +3602,65 @@ msgstr "hello" msgid "TurtleBlocks" msgstr "TurtleBlocks" -#: TurtleArt/tabasics.py:443 +#: TurtleArt/tabasics.py:308 +msgid "pen" +msgstr "pen" + +#: TurtleArt/tabasics.py:347 +msgid "set color" +msgstr "set color" + +#: TurtleArt/tabasics.py:447 msgid "pen down?" msgstr "pen down?" -#: TurtleArt/tabasics.py:445 +#: TurtleArt/tabasics.py:449 msgid "returns True if pen is down" msgstr "returns True if pen is down" -#: TurtleArt/tawindow.py:1414 -msgid "" -"Please hit the Stop Button before making changes to your Turtle Blocks " -"program" -msgstr "" -"Please hit the Stop Button before making changes to your Turtle Blocks " -"program" +#: TurtleArt/tabasics.py:510 +msgid "colors" +msgstr "colors" + +#: TurtleArt/tabasics.py:605 +msgid "numbers" +msgstr "numbers" + +#: TurtleArt/tabasics.py:790 +msgid "flow" +msgstr "flow" + +#: TurtleArt/tabasics.py:892 +msgid "blocks" +msgstr "blocks" -#: TurtleArt/tawindow.py:1630 TurtleArtActivity.py:656 -#: TurtleArtActivity.py:805 turtleblocks.py:412 +#: TurtleArt/tawindow.py:1461 +msgid "Please hit the Stop Button before making changes to your program" +msgstr "Please hit the Stop Button before making changes to your program" + +#: TurtleArt/tawindow.py:1678 TurtleArtActivity.py:677 +#: TurtleArtActivity.py:830 turtleblocks.py:435 msgid "Save stack" msgstr "Save stack" -#: TurtleArt/tawindow.py:1631 TurtleArt/tawindow.py:1645 +#: TurtleArt/tawindow.py:1679 TurtleArt/tawindow.py:1693 msgid "Really overwrite stack?" msgstr "Really overwrite stack?" -#: TurtleArt/tawindow.py:1638 TurtleArt/tawindow.py:1648 +#: TurtleArt/tawindow.py:1686 TurtleArt/tawindow.py:1696 msgid "Overwrite stack" msgstr "Overwrite stack" -#: TurtleArt/tawindow.py:1669 TurtleArt/tawindow.py:1677 -#: TurtleArt/tawindow.py:1686 TurtleArtActivity.py:658 turtleblocks.py:414 +#: TurtleArt/tawindow.py:1717 TurtleArt/tawindow.py:1725 +#: TurtleArt/tawindow.py:1734 TurtleArtActivity.py:679 turtleblocks.py:437 msgid "Delete stack" msgstr "Delete stack" -#: TurtleArt/tawindow.py:1670 TurtleArt/tawindow.py:1683 +#: TurtleArt/tawindow.py:1718 TurtleArt/tawindow.py:1731 msgid "Really delete stack?" msgstr "Really delete stack?" -#: TurtleArtActivity.py:933 +#: TurtleArtActivity.py:958 msgid "Palettes" msgstr "Palettes" @@ -3579,16 +3668,60 @@ msgstr "Palettes" msgid "Facebook wall post" msgstr "Facebook wall post" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:123 +msgid "media" +msgstr "media" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:438 +msgid "extras" +msgstr "extras" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:688 +msgid "turtle x" +msgstr "turtle x" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:691 +msgid "Returns x coordinate of turtle" +msgstr "Returns x coordinate of turtle" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:698 +msgid "turtle y" +msgstr "turtle y" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701 +msgid "Returns y coordinate of turtle" +msgstr "Returns y coordinate of turtle" + #. TRANS: pop removes a new item from the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:709 msgid "active turtle" msgstr "active turtle" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:712 msgid "the name of the active turtle" msgstr "the name of the active turtle" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:968 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:720 +msgid "turtle heading" +msgstr "turtle heading" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 +msgid "Returns heading of turtle" +msgstr "Returns heading of turtle" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:792 +msgid "select palette" +msgstr "select palette" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:801 +msgid "portfolio" +msgstr "portfolio" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1002 +msgid "my blocks" +msgstr "my blocks" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1007 msgid "Palette of user-defined operators" msgstr "Palette of user-defined operators" @@ -3621,18 +3754,27 @@ msgstr "" msgid "turns the turtle 180 degrees" msgstr "turns the turtle 180 degrees" -#: turtleblocks.py:376 +#: turtleblocks.py:398 msgid "Show sample projects" msgstr "Show sample projects" -#: turtleblocks.py:378 +#: turtleblocks.py:400 msgid "Hide sample projects" msgstr "Hide sample projects" -#: turtleblocks.py:436 +#: turtleblocks.py:459 msgid "About..." msgstr "About..." +#~ msgid "touch" +#~ msgstr "touch" + +#~ msgid "ultrasonic" +#~ msgstr "ultrasonic" + +#~ msgid "touch sensor" +#~ msgstr "touch sensor" + #~ msgid "custom module sensor A" #~ msgstr "custom module sensor A" @@ -3793,6 +3935,9 @@ msgstr "About..." #~ msgid "sets color of text drawn by the turtle" #~ msgstr "sets color of text drawn by the turtle" +#~ msgid "palette" +#~ msgstr "palette" + #~ msgid "presentation 2x2" #~ msgstr "presentation 2x2" @@ -3879,15 +4024,6 @@ msgstr "About..." #~ msgid "return calibration 2" #~ msgstr "return calibration 2" -#~ msgid "RGB" -#~ msgstr "RGB" - -#~ msgid "YUV" -#~ msgstr "YUV" - -#~ msgid "HSV" -#~ msgstr "HSV" - #~ msgid "Please check the port." #~ msgstr "Please check the port." @@ -4115,9 +4251,6 @@ msgstr "About..." #~ msgid " clean " #~ msgstr " clean " -#~ msgid "numbers" -#~ msgstr "numbers" - #~ msgid "write" #~ msgstr "write" @@ -4129,9 +4262,6 @@ msgstr "About..." #~ msgstr "" #~ "a programmable block: used to add advanced math equations, e.g., sin(x)" -#~ msgid "blocks" -#~ msgstr "blocks" - #~ msgid "text size" #~ msgstr "text size" @@ -4144,12 +4274,6 @@ msgstr "About..." #~ msgid "picture top" #~ msgstr "picture top" -#~ msgid "flow" -#~ msgstr "flow" - -#~ msgid "portfolio" -#~ msgstr "portfolio" - #~ msgid "restores most recent blocks from trash" #~ msgstr "restores most recent blocks from trash" @@ -4168,9 +4292,6 @@ msgstr "About..." #~ msgid "Trashcan" #~ msgstr "Trashcan" -#~ msgid "pen" -#~ msgstr "pen" - #~ msgid "picture right" #~ msgstr "picture right" @@ -4185,6 +4306,3 @@ msgstr "About..." #~ msgid "holds current text size (can be used in place of a number block)" #~ msgstr "holds current text size (can be used in place of a number block)" - -#~ msgid "extras" -#~ msgstr "extras" diff --git a/po/en_GB.po b/po/en_GB.po index 55c7b31..07de0c7 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -18,8 +18,8 @@ msgstr "" "#-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-09-14 00:32-0400\n" -"PO-Revision-Date: 2013-09-16 02:57+0200\n" +"POT-Creation-Date: 2013-10-10 00:32-0400\n" +"PO-Revision-Date: 2013-10-14 02:52+0200\n" "Last-Translator: Chris \n" "Language-Team: LANGUAGE \n" "Language: en_GB\n" @@ -31,8 +31,8 @@ msgstr "" "#-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-07-18 00:30-0400\n" -"PO-Revision-Date: 2013-07-22 21:10+0200\n" +"POT-Creation-Date: 2013-10-08 00:30-0400\n" +"PO-Revision-Date: 2013-10-09 00:31+0200\n" "Last-Translator: Chris \n" "Language-Team: LANGUAGE \n" "Language: en_GB\n" @@ -182,89 +182,93 @@ msgid "custom module %s" msgstr "custom module %s" #: taextras.py:93 +msgid "sensor a" +msgstr "sensor a" + +#: taextras.py:94 +msgid "sensor b" +msgstr "sensor b" + +#: taextras.py:95 +msgid "sensor c" +msgstr "sensor c" + +#: taextras.py:96 +msgid "actuator a" +msgstr "actuator a" + +#: taextras.py:97 +msgid "actuator b" +msgstr "actuator b" + +#: taextras.py:98 +msgid "actuator c" +msgstr "actuator c" + +#: taextras.py:99 msgid "LED" msgstr "LED" -#: taextras.py:94 +#: taextras.py:100 taextras.py:397 msgid "button" msgstr "button" -#: taextras.py:95 taextras.py:384 TurtleArt/tabasics.py:327 -#: TurtleArt/tabasics.py:409 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1089 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1094 +#: taextras.py:101 taextras.py:402 TurtleArt/tabasics.py:331 +#: TurtleArt/tabasics.py:413 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1129 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1134 msgid "gray" msgstr "grey" -#: taextras.py:96 taextras.py:382 +#: taextras.py:102 taextras.py:400 msgid "light" msgstr "light" -#: taextras.py:97 taextras.py:356 +#: taextras.py:103 taextras.py:376 taextras.py:398 msgid "distance" msgstr "distance" -#: taextras.py:98 plugins/audio_sensors/audio_sensors.py:151 +#: taextras.py:104 plugins/audio_sensors/audio_sensors.py:151 #: plugins/audio_sensors/audio_sensors.py:165 #: plugins/audio_sensors/audio_sensors.py:179 #: plugins/audio_sensors/audio_sensors.py:193 msgid "resistance" msgstr "resistance" -#: taextras.py:99 plugins/audio_sensors/audio_sensors.py:157 +#: taextras.py:105 plugins/audio_sensors/audio_sensors.py:157 #: plugins/audio_sensors/audio_sensors.py:171 #: plugins/audio_sensors/audio_sensors.py:185 #: plugins/audio_sensors/audio_sensors.py:199 msgid "voltage" msgstr "voltage" -#: taextras.py:100 +#: taextras.py:106 msgid "temperature" msgstr "temperature" -#: taextras.py:101 -msgid "sensor a" -msgstr "sensor a" - -#: taextras.py:102 -msgid "sensor b" -msgstr "sensor b" - -#: taextras.py:103 -msgid "sensor c" -msgstr "sensor c" - -#: taextras.py:104 -msgid "actuator a" -msgstr "actuator a" - -#: taextras.py:105 -msgid "actuator b" -msgstr "actuator b" - -#: taextras.py:106 -msgid "actuator c" -msgstr "actuator c" - #: taextras.py:107 +msgid "butia" +msgstr "butia" + +#: taextras.py:108 msgid "Butia Robot" msgstr "Butia Robot" -#: taextras.py:108 +#: taextras.py:109 msgid "refresh Butia" msgstr "refresh Butia" -#: taextras.py:109 +#: taextras.py:110 msgid "refresh the state of the Butia palette and blocks" msgstr "refresh the state of the Butia palette and blocks" #. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: This string is shorthand for "battery charge of Butia" -#: taextras.py:111 +#: taextras.py:112 msgid "battery charge Butia" msgstr "battery charge Butia" -#: taextras.py:112 +#: taextras.py:113 msgid "" "returns the battery charge in volts. If no motors present, it returns 255" msgstr "" @@ -272,290 +276,319 @@ msgstr "" #. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: This string is shorthand for "speed of Butia" -#: taextras.py:114 +#: taextras.py:115 msgid "speed Butia" msgstr "speed Butia" -#: taextras.py:115 +#: taextras.py:116 msgid "set the speed of the Butia motors" msgstr "set the speed of the Butia motors" -#: taextras.py:116 +#: taextras.py:117 msgid "move Butia" msgstr "move Butia" -#: taextras.py:117 TurtleArt/tabasics.py:169 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856 +#: taextras.py:118 TurtleArt/tabasics.py:171 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 msgid "left" msgstr "left" -#: taextras.py:118 TurtleArt/tabasics.py:181 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:880 +#: taextras.py:119 TurtleArt/tabasics.py:183 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:918 msgid "right" msgstr "right" -#: taextras.py:119 +#: taextras.py:120 msgid "moves the Butia motors at the specified speed" msgstr "moves the Butia motors at the specified speed" -#: taextras.py:120 +#: taextras.py:121 msgid "stop Butia" msgstr "stop Butia" -#: taextras.py:121 +#: taextras.py:122 msgid "stop the Butia robot" msgstr "stop the Butia robot" #. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: This string is shorthand for "move Butia forward" -#: taextras.py:123 +#: taextras.py:124 msgid "forward Butia" msgstr "forward Butia" -#: taextras.py:124 +#: taextras.py:125 msgid "move the Butia robot forward" msgstr "move the Butia robot forward" #. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: This string is shorthand for "turn Butia left" -#: taextras.py:126 +#: taextras.py:127 msgid "left Butia" msgstr "left Butia" -#: taextras.py:127 +#: taextras.py:128 msgid "turn the Butia robot at left" msgstr "turn the Butia robot at left" #. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: This string is shorthand for "turn Butia right" -#: taextras.py:129 +#: taextras.py:130 msgid "right Butia" msgstr "right Butia" -#: taextras.py:130 +#: taextras.py:131 msgid "turn the Butia robot at right" msgstr "turn the Butia robot at right" #. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: This string is shorthand for "move Butia backward" -#: taextras.py:132 +#: taextras.py:133 msgid "backward Butia" msgstr "backward Butia" -#: taextras.py:133 +#: taextras.py:134 msgid "move the Butia robot backward" msgstr "move the Butia robot backward" -#: taextras.py:134 +#: taextras.py:135 +msgid "butia-extra" +msgstr "butia-extra" + +#. TRANS: cast means data type conversion +#: taextras.py:137 msgid "Butia Robot extra blocks" msgstr "Butia Robot extra blocks" -#: taextras.py:135 +#: taextras.py:138 msgid "pin mode Butia" msgstr "pin mode Butia" -#: taextras.py:136 taextras.py:319 taextras.py:485 +#: taextras.py:139 taextras.py:339 taextras.py:508 msgid "pin" msgstr "pin" -#: taextras.py:137 taextras.py:486 +#: taextras.py:140 taextras.py:509 msgid "mode" msgstr "mode" -#: taextras.py:138 +#: taextras.py:141 msgid "Select the pin function (INPUT, OUTPUT)." msgstr "Select the pin function (INPUT, OUTPUT)." -#: taextras.py:139 +#: taextras.py:142 msgid "read pin Butia" msgstr "read pin Butia" -#: taextras.py:140 +#: taextras.py:143 msgid "read the value of a pin" msgstr "read the value of a pin" -#: taextras.py:141 +#: taextras.py:144 msgid "write pin Butia" msgstr "write pin Butia" -#: taextras.py:142 taextras.py:489 TurtleArt/tabasics.py:976 -#: TurtleArt/tawindow.py:4571 +#: taextras.py:145 taextras.py:512 TurtleArt/tabasics.py:988 +#: TurtleArt/tawindow.py:4643 msgid "value" msgstr "value" -#: taextras.py:143 +#: taextras.py:146 msgid "set a hack pin to 0 or 1" msgstr "set a hack pin to 0 or 1" -#: taextras.py:144 taextras.py:463 +#: taextras.py:147 taextras.py:485 msgid "INPUT" msgstr "INPUT" -#: taextras.py:145 +#: taextras.py:148 msgid "Configure hack pin for digital input." msgstr "Configure hack pin for digital input." -#: taextras.py:146 taextras.py:461 +#: taextras.py:149 taextras.py:483 msgid "HIGH" msgstr "HIGH" -#: taextras.py:147 +#: taextras.py:150 msgid "Set HIGH value for digital pin." msgstr "Set HIGH value for digital pin." -#: taextras.py:148 taextras.py:462 +#: taextras.py:151 taextras.py:484 msgid "LOW" msgstr "LOW" -#: taextras.py:149 taextras.py:501 +#: taextras.py:152 taextras.py:524 msgid "Set LOW value for digital port." msgstr "Set LOW value for digital port." -#: taextras.py:150 taextras.py:464 +#: taextras.py:153 taextras.py:486 msgid "OUTPUT" msgstr "OUTPUT" -#: taextras.py:151 +#: taextras.py:154 msgid "Configure hack port for digital output." msgstr "Configure hack port for digital output." -#: taextras.py:152 +#: taextras.py:155 +msgid "butia-cast" +msgstr "butia-cast" + +#: taextras.py:156 msgid "Butia Robot cast blocks" msgstr "Butia Robot cast blocks" -#: taextras.py:153 +#: taextras.py:157 msgid "Butia" msgstr "Butia" -#: taextras.py:154 +#. TRANS: cast means data type conversion +#: taextras.py:159 msgid "CAST\n" msgstr "CAST\n" -#: taextras.py:155 +#: taextras.py:160 msgid "new name" msgstr "new name" -#: taextras.py:156 +#: taextras.py:161 msgid "original" msgstr "original" -#: taextras.py:157 +#: taextras.py:162 msgid "f(x)=" msgstr "f(x)=" -#: taextras.py:158 +#: taextras.py:163 msgid "name" msgstr "name" -#: taextras.py:159 +#. TRANS: cast means data type conversion +#: taextras.py:165 msgid "Cast a new block" msgstr "Cast a new block" -#: taextras.py:160 +#: taextras.py:166 #, python-format msgid "generic module %s" msgstr "generic module %s" -#: taextras.py:161 +#: taextras.py:167 +msgid "Butia IP" +msgstr "Butia IP" + +#: taextras.py:168 +msgid "change the IP of butia robot" +msgstr "change the IP of butia robot" + +#: taextras.py:169 #, python-format msgid "ERROR: The pin %s must be in OUTPUT mode." msgstr "ERROR: The pin %s must be in OUTPUT mode." -#: taextras.py:162 +#: taextras.py:170 #, python-format msgid "ERROR: The pin %s must be in INPUT mode." msgstr "ERROR: The pin %s must be in INPUT mode." -#: taextras.py:163 +#: taextras.py:171 #, python-format msgid "ERROR: Something wrong with function '%s'" msgstr "ERROR: Something wrong with function '%s'" -#: taextras.py:164 +#: taextras.py:172 #, python-format msgid "ERROR: cannot init GCONF client: %s" msgstr "ERROR: cannot init GCONF client: %s" -#: taextras.py:165 +#. TRANS: cast means data type conversion +#: taextras.py:174 msgid "ERROR: You must cast Sensor or Actuator: A, B or C" msgstr "ERROR: You must cast Sensor or Actuator: A, B or C" -#: taextras.py:166 +#: taextras.py:175 +#, python-format +msgid "ERROR: Invalid IP '%s'" +msgstr "ERROR: Invalid IP '%s'" + +#: taextras.py:176 msgid "Creating PyBot server" msgstr "Creating PyBot server" -#: taextras.py:167 +#: taextras.py:177 msgid "ERROR creating PyBot server" msgstr "ERROR creating PyBot server" -#: taextras.py:168 +#: taextras.py:178 msgid "PyBot is alive!" msgstr "PyBot is alive!" -#: taextras.py:169 +#: taextras.py:179 msgid "Ending butia polling" msgstr "Ending butia polling" -#: taextras.py:173 +#: taextras.py:183 msgid "Error importing Pygame. This plugin require Pygame 1.9" msgstr "Error importing Pygame. This plugin require Pygame 1.9" -#: taextras.py:174 +#: taextras.py:184 msgid "Error on initialization of the camera" msgstr "Error on initialisation of the camera" -#: taextras.py:175 +#: taextras.py:185 msgid "No camera was found" msgstr "No camera was found" -#: taextras.py:176 +#: taextras.py:186 msgid "Error stopping camera" msgstr "Error stopping camera" -#: taextras.py:177 +#: taextras.py:187 msgid "Error starting camera" msgstr "Error starting camera" #. TRANS: The "mask" is used to restrict processing to a region in the image -#: taextras.py:179 +#: taextras.py:189 msgid "Error in get mask" msgstr "Error in get mask" -#: taextras.py:180 +#: taextras.py:190 +msgid "followme" +msgstr "followme" + +#: taextras.py:191 msgid "FollowMe" msgstr "FollowMe" -#: taextras.py:181 +#: taextras.py:192 msgid "refresh FollowMe" msgstr "refresh FollowMe" -#: taextras.py:182 +#: taextras.py:193 msgid "Search for a connected camera." msgstr "Search for a connected camera." #. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: the calibration is used to match an RGB color to a target -#: taextras.py:184 +#: taextras.py:195 msgid "calibration" msgstr "calibration" -#: taextras.py:185 +#: taextras.py:196 msgid "store a personalized calibration" msgstr "return a personalised calibration" -#: taextras.py:186 +#: taextras.py:197 msgid "return a personalized calibration" msgstr "return a personalised calibration" -#: taextras.py:187 +#: taextras.py:198 msgid "follow" msgstr "follow" -#: taextras.py:188 +#: taextras.py:199 msgid "follow a color or calibration" msgstr "follow a colour or calibration" -#: taextras.py:189 plugins/camera_sensor/camera_sensor.py:80 +#: taextras.py:200 plugins/camera_sensor/camera_sensor.py:80 #: plugins/camera_sensor/camera_sensor.py:93 #: plugins/camera_sensor/camera_sensor.py:128 #: plugins/camera_sensor/camera_sensor.py:141 @@ -564,324 +597,360 @@ msgstr "follow a colour or calibration" msgid "brightness" msgstr "brightness" -#: taextras.py:190 +#: taextras.py:201 msgid "set the camera brightness as a value between 0 to 255." msgstr "set the camera brightness as a value between 0 to 255." -#: taextras.py:191 +#: taextras.py:202 msgid "minimum pixels" msgstr "minimum pixels" -#: taextras.py:192 +#: taextras.py:203 msgid "set the minimal number of pixels to follow" msgstr "set the minimal number of pixels to follow" -#: taextras.py:193 +#: taextras.py:204 msgid "threshold" msgstr "threshold" #. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: RGB color space (red, green, blue) -#: taextras.py:195 +#: taextras.py:206 msgid "set a threshold for a RGB color" msgstr "set a threshold for a RGB colour" -#: taextras.py:196 +#: taextras.py:207 msgid "camera mode" msgstr "camera mode" #. TRANS: RGB, YUV, and HSV are color spaces -#: taextras.py:198 +#: taextras.py:209 msgid "set the color mode of the camera: RGB; YUV or HSV" msgstr "set the colour mode of the camera: RGB; YUV or HSV" -#: taextras.py:199 +#: taextras.py:210 msgid "get brightness" msgstr "get brightness" -#: taextras.py:200 +#: taextras.py:211 msgid "get the brightness of the ambient light" msgstr "get the brightness of the ambient light" -#: taextras.py:201 +#: taextras.py:212 msgid "average color" msgstr "average colour" -#: taextras.py:202 +#: taextras.py:213 msgid "" -"if set to 0 then color averaging is off during calibration; for other values " +"if set to 0 then color averaging is off during calibration;for other values, " "it is on" msgstr "" -"if set to 0 then colour averaging is off during calibration; for other " -"values it is on" +"if set to 0 then colour averaging is off during calibration;for other " +"values, it is on" -#: taextras.py:204 +#: taextras.py:215 msgid "x position" msgstr "x position" -#: taextras.py:205 +#: taextras.py:216 msgid "return x position" msgstr "return x position" -#: taextras.py:206 +#: taextras.py:217 msgid "y position" msgstr "y position" -#: taextras.py:207 +#: taextras.py:218 msgid "return y position" msgstr "return y position" -#: taextras.py:208 +#: taextras.py:219 msgid "pixels" msgstr "pixels" -#: taextras.py:209 +#: taextras.py:220 msgid "return the number of pixels of the biggest blob" msgstr "return the number of pixels of the biggest blob" #. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: RGB color space (red, green, blue) -#: taextras.py:211 +#: taextras.py:222 +msgid "RGB" +msgstr "RGB" + +#: taextras.py:223 msgid "set the color mode of the camera to RGB" msgstr "set the colour mode of the camera to RGB" #. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: YUV color space (luminance, chrominance) -#: taextras.py:213 +#: taextras.py:225 +msgid "YUV" +msgstr "YUV" + +#: taextras.py:226 msgid "set the color mode of the camera to YUV" msgstr "set the colour mode of the camera to YUV" #. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: HSV color space (hue, saturation, value) -#: taextras.py:215 +#: taextras.py:228 +msgid "HSV" +msgstr "HSV" + +#: taextras.py:229 msgid "set the color mode of the camera to HSV" msgstr "set the colour mode of the camera to HSV" -#: taextras.py:216 +#: taextras.py:230 +msgid "get color" +msgstr "get colour" + +#: taextras.py:231 +msgid "get the color of an object" +msgstr "get the colour of an object" + +#: taextras.py:232 +msgid "color distance" +msgstr "colour distance" + +#: taextras.py:233 +msgid "set the distance to identify a color" +msgstr "set the distance to identify a colour" + +#: taextras.py:234 msgid "empty calibration" msgstr "empty calibration" -#: taextras.py:217 +#: taextras.py:235 msgid "error in string conversion" msgstr "error in string conversion" #. TRANS: Pattern detection is a plugin that allow detect signals #. with the camera -#: taextras.py:223 +#: taextras.py:241 msgid "Pattern detection" msgstr "Pattern detection" -#: taextras.py:224 +#: taextras.py:242 +msgid "pattern_detection" +msgstr "pattern_detection" + +#: taextras.py:243 msgid "Seeing signal" msgstr "Seeing signal" -#: taextras.py:225 +#: taextras.py:244 msgid "Returns True if the signal is in front of the camera" msgstr "Returns True if the signal is in front of the camera" -#: taextras.py:226 +#: taextras.py:245 msgid "Distance to signal" msgstr "Distance to signal" -#: taextras.py:227 +#: taextras.py:246 msgid "Returns the distance of the signal to the camera in millimeters" msgstr "Returns the distance of the signal to the camera in milimetres" #. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: SumBot is a robot programmed for "Sumo wrestling" -#: taextras.py:232 +#: taextras.py:251 msgid "SumBot" msgstr "SumBot" -#: taextras.py:233 +#: taextras.py:252 +msgid "sumtia" +msgstr "sumtia" + +#: taextras.py:253 msgid "speed SumBot" msgstr "speed SumBot" -#: taextras.py:234 +#: taextras.py:254 msgid "submit the speed to the SumBot" msgstr "submit the speed to the SumBot" -#: taextras.py:235 +#: taextras.py:255 msgid "set the default speed for the movement commands" msgstr "set the default speed for the movement commands" #. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: This string is shorthand for "move SumBot forward" -#: taextras.py:237 +#: taextras.py:257 msgid "forward SumBot" msgstr "forward SumBot" -#: taextras.py:238 +#: taextras.py:258 msgid "move SumBot forward" msgstr "move SumBot forward" #. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: This string is shorthand for "move SumBot backward" -#: taextras.py:240 +#: taextras.py:260 msgid "backward SumBot" msgstr "backward SumBot" -#: taextras.py:241 +#: taextras.py:261 msgid "move SumBot backward" msgstr "move SumBot backward" -#: taextras.py:242 +#: taextras.py:262 msgid "stop SumBot" msgstr "stop SumBot" -#: taextras.py:243 +#: taextras.py:263 msgid "stop the SumBot" msgstr "stop the SumBot" #. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: This string is shorthand for "turn SumBot left" -#: taextras.py:245 +#: taextras.py:265 msgid "left SumBot" msgstr "left SumBot" -#: taextras.py:246 +#: taextras.py:266 msgid "turn left the SumBot" msgstr "turn left the SumBot" #. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: This string is shorthand for "move SumBot right" -#: taextras.py:248 +#: taextras.py:268 msgid "right SumBot" msgstr "right SumBot" -#: taextras.py:249 +#: taextras.py:269 msgid "turn right the SumBot" msgstr "turn right the SumBot" #. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: The angle to the center is the angle SumBot must turn to #. face the center of the playing field -#: taextras.py:252 +#: taextras.py:272 msgid "angle to center" msgstr "angle to centre" #. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: dohyo is the playing field -#: taextras.py:254 +#: taextras.py:274 msgid "get the angle to the center of the dohyo" msgstr "get the angle to the centre of the dohyo" #. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: The angle to the center is the angle SumBot must turn to #. face the Enemy (opponent) -#: taextras.py:257 +#: taextras.py:277 msgid "angle to Enemy" msgstr "angle to Enemy" -#: taextras.py:258 +#: taextras.py:278 msgid "get the angle to the Enemy" msgstr "get the angle to the Enemy" #. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: This string is shorthand for "x coordinate of SumBot" -#: taextras.py:260 +#: taextras.py:280 msgid "x coor. SumBot" msgstr "x coor. SumBot" -#: taextras.py:261 +#: taextras.py:281 msgid "get the x coordinate of the SumBot" msgstr "get the x coordinate of the SumBot" #. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: This string is shorthand for "y coordinate of SumBot" -#: taextras.py:263 +#: taextras.py:283 msgid "y coor. SumBot" msgstr "y coor. SumBot" -#: taextras.py:264 +#: taextras.py:284 msgid "get the y coordinate of the SumBot" msgstr "get the y coordinate of the SumBot" #. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" -#: taextras.py:266 +#: taextras.py:286 msgid "x coor. Enemy" msgstr "x coor. Enemy" -#: taextras.py:267 +#: taextras.py:287 msgid "get the x coordinate of the Enemy" msgstr "get the x coordinate of the Enemy" #. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" -#: taextras.py:269 +#: taextras.py:289 msgid "y coor. Enemy" msgstr "y coor. Enemy" -#: taextras.py:270 +#: taextras.py:290 msgid "get the y coordinate of the Enemy" msgstr "get the y coordinate of the Enemy" #. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: This string is shorthand for "rotation of SumBot" -#: taextras.py:272 +#: taextras.py:292 msgid "rotation SumBot" msgstr "rotation SumBot" -#: taextras.py:273 +#: taextras.py:293 msgid "get the rotation of the Sumbot" msgstr "get the rotation of the Sumbot" #. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: This string is shorthand for "rotation of SumBot's enemy" -#: taextras.py:275 +#: taextras.py:295 msgid "rotation Enemy" msgstr "rotation Enemy" -#: taextras.py:276 +#: taextras.py:296 msgid "get the rotation of the Enemy" msgstr "get the rotation of the Enemy" -#: taextras.py:277 +#: taextras.py:297 msgid "distance to center" msgstr "distance to centre" #. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: dohyo is the playing field -#: taextras.py:279 +#: taextras.py:299 msgid "get the distance to the center of the dohyo" msgstr "get the distance to the centre of the dohyo" -#: taextras.py:280 +#: taextras.py:300 msgid "distance to Enemy" msgstr "distance to Enemy" -#: taextras.py:281 +#: taextras.py:301 msgid "get the distance to the Enemy" msgstr "get the distance to the Enemy" -#: taextras.py:282 +#: taextras.py:302 msgid "update information" msgstr "update information" -#: taextras.py:283 +#: taextras.py:303 msgid "update information from the server" msgstr "update information from the server" #. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: Please use similar terms to those used in the Physics Activity -#: taextras.py:288 +#: taextras.py:308 msgid "Palette of physics blocks" msgstr "Palette of physics blocks" -#: taextras.py:289 +#: taextras.py:309 msgid "start polygon" msgstr "start polygon" -#: taextras.py:290 +#: taextras.py:310 msgid "Begin defining a new polygon based on the current Turtle xy position." msgstr "Begin defining a new polygon based on the current Turtle xy position." -#: taextras.py:292 +#: taextras.py:312 msgid "add point" msgstr "add point" -#: taextras.py:293 +#: taextras.py:313 msgid "" "Add a new point to the current polygon based on the current Turtle xy " "position." @@ -889,88 +958,88 @@ msgstr "" "Add a new point to the current polygon based on the current Turtle xy " "position." -#: taextras.py:295 +#: taextras.py:315 msgid "end polygon" msgstr "end polygon" -#: taextras.py:296 +#: taextras.py:316 msgid "Define a new polygon." msgstr "Define a new polygon." -#: taextras.py:297 +#: taextras.py:317 msgid "end filled polygon" msgstr "end filled polygon" -#: taextras.py:298 +#: taextras.py:318 msgid "Not a simple polygon" msgstr "Not a simple polygon" -#: taextras.py:299 +#: taextras.py:319 msgid "Define a new filled polygon." msgstr "Define a new filled polygon." -#: taextras.py:300 +#: taextras.py:320 msgid "triangle" msgstr "triangle" #. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: base of a triangle -#: taextras.py:302 +#: taextras.py:322 msgid "base" msgstr "base" -#: taextras.py:303 taextras.py:309 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896 +#: taextras.py:323 taextras.py:329 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:934 msgid "height" msgstr "height" -#: taextras.py:304 +#: taextras.py:324 msgid "Add a triangle object to the project." msgstr "Add a triangle object to the project." -#: taextras.py:305 +#: taextras.py:325 msgid "circle" msgstr "circle" -#: taextras.py:306 +#: taextras.py:326 msgid "Add a circle object to the project." msgstr "Add a circle object to the project." -#: taextras.py:307 +#: taextras.py:327 msgid "rectangle" msgstr "rectangle" -#: taextras.py:308 plugins/turtle_blocks_extras/turtle_blocks_extras.py:872 +#: taextras.py:328 plugins/turtle_blocks_extras/turtle_blocks_extras.py:910 msgid "width" msgstr "width" -#: taextras.py:310 +#: taextras.py:330 msgid "Add a rectangle object to the project." msgstr "Add a rectangle object to the project." -#: taextras.py:311 +#: taextras.py:331 msgid "reset" msgstr "reset" -#: taextras.py:312 +#: taextras.py:332 msgid "Reset the project; clear the object list." msgstr "Reset the project; clear the object list." -#: taextras.py:313 +#: taextras.py:333 msgid "motor" msgstr "motor" #. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: torque as in engine torque -#: taextras.py:315 +#: taextras.py:335 msgid "torque" msgstr "torque" -#: taextras.py:316 +#: taextras.py:336 msgid "speed" msgstr "speed" -#: taextras.py:317 +#: taextras.py:337 msgid "" "Motor torque and speed range from 0 (off) to positive numbers; motor is " "placed on the most recent object created." @@ -978,23 +1047,23 @@ msgstr "" "Motor torque and speed range from 0 (off) to positive numbers; motor is " "placed on the most recent object created." -#: taextras.py:320 +#: taextras.py:340 msgid "Pin an object down so that it cannot fall." msgstr "Pin an object down so that it cannot fall." -#: taextras.py:321 +#: taextras.py:341 msgid "joint" msgstr "joint" -#: taextras.py:322 TurtleArt/tabasics.py:210 TurtleArt/tabasics.py:288 +#: taextras.py:342 TurtleArt/tabasics.py:212 TurtleArt/tabasics.py:290 msgid "x" msgstr "x" -#: taextras.py:323 TurtleArt/tabasics.py:210 TurtleArt/tabasics.py:288 +#: taextras.py:343 TurtleArt/tabasics.py:212 TurtleArt/tabasics.py:290 msgid "y" msgstr "y" -#: taextras.py:324 +#: taextras.py:344 msgid "" "Join two objects together (the most recent object created and the object at " "point x, y)." @@ -1002,39 +1071,39 @@ msgstr "" "Join two objects together (the most recent object created and the object at " "point x, y)." -#: taextras.py:326 +#: taextras.py:346 msgid "save as Physics activity" msgstr "save as Physics activity" -#: taextras.py:327 +#: taextras.py:347 msgid "Save the project to the Journal as a Physics activity." msgstr "Save the project to the Journal as a Physics activity." #. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: Here, gear means a toothed wheel, as in a clock-works -#: taextras.py:329 +#: taextras.py:349 msgid "gear" msgstr "gear" -#: taextras.py:330 +#: taextras.py:350 msgid "Add a gear object to the project." msgstr "Add a gear object to the project." -#: taextras.py:331 +#: taextras.py:351 msgid "density" msgstr "density" -#: taextras.py:332 +#: taextras.py:352 msgid "" "Set the density property for objects (density can be any positive number)." msgstr "" "Set the density property for objects (density can be any positive number)." -#: taextras.py:334 +#: taextras.py:354 msgid "friction" msgstr "friction" -#: taextras.py:335 +#: taextras.py:355 msgid "" "Set the friction property for objects (value from 0 to 1, where 0 turns " "friction off and 1 is strong friction)." @@ -1044,11 +1113,11 @@ msgstr "" #. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: bounciness is coefficient of restitution -#: taextras.py:338 +#: taextras.py:358 msgid "bounciness" msgstr "bounciness" -#: taextras.py:339 +#: taextras.py:359 msgid "" "Set the bounciness property for objects (a value from 0 to 1, where 0 means " "no bounce and 1 is very bouncy)." @@ -1058,11 +1127,11 @@ msgstr "" #. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: dynamic here means moving vs in a fixed position -#: taextras.py:342 +#: taextras.py:362 msgid "dynamic" msgstr "dynamic" -#: taextras.py:343 +#: taextras.py:363 msgid "" "If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." msgstr "" @@ -1070,27 +1139,27 @@ msgstr "" #. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: WeDo is a robotics product of the LEGO company -#: taextras.py:349 +#: taextras.py:369 msgid "Palette of WeDo blocks" msgstr "Palette of WeDo blocks" -#: taextras.py:350 +#: taextras.py:370 msgid "WeDo" msgstr "WeDo" -#: taextras.py:351 +#: taextras.py:371 msgid "set current WeDo device" msgstr "set current WeDo device" -#: taextras.py:352 +#: taextras.py:372 msgid "number of WeDo devices" msgstr "number of WeDo devices" -#: taextras.py:353 +#: taextras.py:373 msgid "tilt" msgstr "tilt" -#: taextras.py:354 +#: taextras.py:374 msgid "" "tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " "tilt left, 2 == tilt right)" @@ -1100,172 +1169,168 @@ msgstr "" #. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: This string is shorthand for "output of the distance sensor" -#: taextras.py:358 +#: taextras.py:378 msgid "distance sensor output" msgstr "distance sensor output" -#: taextras.py:359 +#: taextras.py:379 msgid "Motor A" msgstr "Motor A" -#: taextras.py:360 +#: taextras.py:380 msgid "returns the current value of Motor A" msgstr "returns the current value of Motor A" -#: taextras.py:361 +#: taextras.py:381 msgid "Motor B" msgstr "Motor B" -#: taextras.py:362 +#: taextras.py:382 msgid "returns the current value of Motor B" msgstr "returns the current value of Motor B" -#: taextras.py:363 +#: taextras.py:383 msgid "set the value for Motor A" msgstr "set the value for Motor A" -#: taextras.py:364 +#: taextras.py:384 msgid "set the value for Motor B" msgstr "set the value for Motor B" -#: taextras.py:365 +#: taextras.py:385 msgid "WeDo is unavailable" msgstr "WeDo is unavailable" #. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 -#: taextras.py:367 +#: taextras.py:387 #, python-format msgid "WeDo %d is unavailable; defaulting to 1" msgstr "WeDo %d is unavailable; defaulting to 1" #. TRANS: %(device)s and %(wedo_number)d are substitution strings; #. please leave untranslated -#: taextras.py:370 +#: taextras.py:390 #, python-format msgid "%(device)s is unavailable on WeDo %(wedo_number)d" msgstr "%(device)s is unavailable on WeDo %(wedo_number)d" #. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: Lego NXT is a robotics product of the LEGO company -#: taextras.py:375 +#: taextras.py:395 msgid "Palette of LEGO NXT blocks of motors" msgstr "Palette of LEGO NXT blocks of motors" -#: taextras.py:376 +#: taextras.py:396 msgid "Palette of LEGO NXT blocks of sensors" msgstr "Palette of LEGO NXT blocks of sensors" -#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: touch sensor (implemented as a button) -#: taextras.py:378 -msgid "touch" -msgstr "touch" - -#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: distance sensor (implemented using ultrasonics) -#: taextras.py:380 -msgid "ultrasonic" -msgstr "ultrasonic" - -#: taextras.py:381 TurtleArt/tabasics.py:313 TurtleArt/tabasics.py:326 -#: TurtleArt/tabasics.py:384 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1092 +#: taextras.py:399 TurtleArt/tabasics.py:317 TurtleArt/tabasics.py:330 +#: TurtleArt/tabasics.py:388 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1132 msgid "color" msgstr "colour" -#: taextras.py:383 plugins/audio_sensors/audio_sensors.py:83 +#: taextras.py:401 plugins/audio_sensors/audio_sensors.py:83 #: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:206 msgid "sound" msgstr "sound" #. TRANS: The brick is the NXT controller -#: taextras.py:386 +#: taextras.py:404 msgid "Please check the connection with the brick" msgstr "Please check the connection with the brick" -#: taextras.py:387 +#: taextras.py:405 #, python-format msgid "Invalid port '%s'. Port must be: PORT A, B or C" msgstr "Invalid port '%s'. Port must be: PORT A, B or C" -#: taextras.py:388 +#: taextras.py:406 #, python-format msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" msgstr "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" -#: taextras.py:389 +#: taextras.py:407 msgid "The value of power must be between -127 to 127" msgstr "The value of power must be between -127 to 127" -#: taextras.py:390 +#: taextras.py:408 #, python-format msgid "The parameter must be a integer, not '%s'" msgstr "The parameter must be a integer, not '%s'" -#: taextras.py:391 +#: taextras.py:409 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:392 +#: taextras.py:410 #, python-format msgid "NXT found %s bricks" msgstr "NXT found %s bricks" -#: taextras.py:393 +#: taextras.py:411 msgid "NXT not found" msgstr "NXT not found" -#: taextras.py:394 +#: taextras.py:412 #, python-format msgid "Brick number %s was not found" msgstr "Brick number %s was not found" -#: taextras.py:395 +#: taextras.py:413 +msgid "nxt-motors" +msgstr "nxt-motors" + +#: taextras.py:414 msgid "refresh NXT" msgstr "refresh NXT" -#: taextras.py:396 +#: taextras.py:415 msgid "Search for a connected NXT brick." msgstr "Search for a connected NXT brick." -#: taextras.py:397 +#: taextras.py:416 msgid "NXT" msgstr "NXT" -#: taextras.py:398 +#: taextras.py:417 msgid "set current NXT device" msgstr "set current NXT device" -#: taextras.py:399 +#: taextras.py:418 +msgid "number of NXTs" +msgstr "number of NXTs" + +#: taextras.py:419 msgid "number of NXT devices" msgstr "number of NXT devices" -#: taextras.py:400 +#: taextras.py:420 msgid "brick name" msgstr "brick name" -#: taextras.py:401 +#: taextras.py:421 msgid "Get the name of a brick." msgstr "Get the name of a brick." -#: taextras.py:402 +#: taextras.py:422 msgid "play tone" msgstr "play tone" -#: taextras.py:403 +#: taextras.py:423 msgid "frequency" msgstr "frequency" -#: taextras.py:404 plugins/turtle_blocks_extras/turtle_blocks_extras.py:425 +#: taextras.py:424 plugins/turtle_blocks_extras/turtle_blocks_extras.py:429 msgid "time" msgstr "time" -#: taextras.py:405 +#: taextras.py:425 msgid "Play a tone at frequency for time." msgstr "Play a tone at frequency for time." #. TRANS: turn is the action -#: taextras.py:407 +#: taextras.py:427 msgid "" "turn motor\n" "\n" @@ -1273,25 +1338,25 @@ msgstr "" "turn motor\n" "\n" -#: taextras.py:408 +#: taextras.py:428 msgid "port" msgstr "port" -#: taextras.py:409 -msgid "power" -msgstr "power" - #. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: rotations is quantity of turns -#: taextras.py:411 +#: taextras.py:430 msgid "rotations" msgstr "rotations" -#: taextras.py:412 +#: taextras.py:431 +msgid "power" +msgstr "power" + +#: taextras.py:432 msgid "turn a motor" msgstr "turn a motor" -#: taextras.py:413 +#: taextras.py:434 msgid "" "synchronize\n" "\n" @@ -1301,39 +1366,39 @@ msgstr "" "\n" "motors" -#: taextras.py:414 +#: taextras.py:435 msgid "steering" msgstr "steering" -#: taextras.py:415 +#: taextras.py:436 msgid "synchronize two motors connected in PORT B and PORT C" msgstr "synchronise two motors connected in PORT B and PORT C" -#: taextras.py:416 +#: taextras.py:437 msgid "PORT A" msgstr "PORT A" -#: taextras.py:417 +#: taextras.py:438 msgid "PORT A of the brick" msgstr "PORT A of the brick" -#: taextras.py:418 +#: taextras.py:439 msgid "PORT B" msgstr "PORT B" -#: taextras.py:419 +#: taextras.py:440 msgid "PORT B of the brick" msgstr "PORT B of the brick" -#: taextras.py:420 +#: taextras.py:441 msgid "PORT C" msgstr "PORT C" -#: taextras.py:421 +#: taextras.py:442 msgid "PORT C of the brick" msgstr "PORT C of the brick" -#: taextras.py:422 +#: taextras.py:443 msgid "" "synchronize\n" "motors" @@ -1341,213 +1406,221 @@ msgstr "" "synchronise\n" "motors" -#: taextras.py:423 +#: taextras.py:444 msgid "start motor" msgstr "start motor" -#: taextras.py:424 +#: taextras.py:445 msgid "Run a motor forever." msgstr "Run a motor forever." -#: taextras.py:425 +#: taextras.py:446 msgid "brake motor" msgstr "brake motor" -#: taextras.py:426 +#: taextras.py:447 msgid "Stop a specified motor." msgstr "Stop a specified motor." #. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: reset is used to reset the counter associated with the motor -#: taextras.py:428 +#: taextras.py:449 msgid "reset motor" msgstr "reset motor" -#: taextras.py:429 +#: taextras.py:450 msgid "Reset the motor counter." msgstr "Reset the motor counter." -#: taextras.py:430 +#: taextras.py:451 msgid "motor position" msgstr "motor position" -#: taextras.py:431 +#: taextras.py:452 msgid "Get the motor position." msgstr "Get the motor position." -#: taextras.py:432 +#: taextras.py:453 +msgid "nxt-sensors" +msgstr "nxt-sensors" + +#: taextras.py:454 msgid "PORT 1" msgstr "PORT 1" -#: taextras.py:433 +#: taextras.py:455 msgid "PORT 1 of the brick" msgstr "PORT 1 of the brick" -#: taextras.py:434 +#: taextras.py:456 msgid "read" msgstr "read" -#: taextras.py:435 +#: taextras.py:457 plugins/turtle_blocks_extras/turtle_blocks_extras.py:309 msgid "sensor" msgstr "sensor" -#: taextras.py:436 +#: taextras.py:458 msgid "Read sensor output." msgstr "Read sensor output." -#: taextras.py:437 +#: taextras.py:459 msgid "PORT 2" msgstr "PORT 2" -#: taextras.py:438 +#: taextras.py:460 msgid "PORT 2 of the brick" msgstr "PORT 2 of the brick" -#: taextras.py:439 +#: taextras.py:461 msgid "light sensor" msgstr "light sensor" -#: taextras.py:440 +#: taextras.py:462 msgid "gray sensor" msgstr "grey sensor" -#: taextras.py:441 +#: taextras.py:463 msgid "PORT 3" msgstr "PORT 3" -#: taextras.py:442 +#: taextras.py:464 msgid "PORT 3 of the brick" msgstr "PORT 3 of the brick" -#: taextras.py:443 -msgid "touch sensor" -msgstr "touch sensor" +#: taextras.py:465 +msgid "button sensor" +msgstr "button sensor" -#: taextras.py:444 +#: taextras.py:466 msgid "distance sensor" msgstr "distance sensor" -#: taextras.py:445 +#: taextras.py:467 msgid "PORT 4" msgstr "PORT 4" -#: taextras.py:446 +#: taextras.py:468 msgid "PORT 4 of the brick" msgstr "PORT 4 of the brick" -#: taextras.py:447 +#: taextras.py:469 msgid "sound sensor" msgstr "sound sensor" -#: taextras.py:448 +#: taextras.py:470 msgid "color sensor" msgstr "colour sensor" #. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: set light is used to set the light level associated with #. the color sensor (which can emit light as well as sense it) -#: taextras.py:451 +#: taextras.py:473 msgid "set light" msgstr "set light" -#: taextras.py:452 +#: taextras.py:474 msgid "Set color sensor light." msgstr "Set colour sensor light." #. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: the battery level is the charge level of the brick -#: taextras.py:454 +#: taextras.py:476 msgid "battery level" msgstr "battery level" -#: taextras.py:455 +#: taextras.py:477 msgid "Get the battery level of the brick in millivolts" msgstr "Get the battery level of the brick in millivolts" #. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: Arduino plugin to control an Arduino board -#: taextras.py:460 +#: taextras.py:482 msgid "Palette of Arduino blocks" msgstr "Palette of Arduino blocks" #. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: PWM is pulse-width modulation -#: taextras.py:466 +#: taextras.py:488 msgid "PWM" msgstr "PWM" -#: taextras.py:467 +#: taextras.py:489 msgid "SERVO" msgstr "SERVO" -#: taextras.py:468 +#: taextras.py:490 msgid "ERROR: Check the Arduino and the number of port." msgstr "ERROR: Check the Arduino and the number of port." -#: taextras.py:469 +#: taextras.py:491 msgid "ERROR: Value must be a number from 0 to 255." msgstr "ERROR: Value must be a number from 0 to 255." -#: taextras.py:470 +#: taextras.py:492 msgid "ERROR: Value must be either HIGH or LOW, 0 or 1" msgstr "ERROR: Value must be either HIGH or LOW, 0 or 1" -#: taextras.py:471 +#: taextras.py:493 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:472 +#: taextras.py:494 msgid "ERROR: The value must be an integer." msgstr "ERROR: The value must be an integer." -#: taextras.py:473 +#: taextras.py:495 msgid "ERROR: The pin must be an integer." msgstr "ERROR: The pin must be an integer." -#: taextras.py:474 +#: taextras.py:496 +msgid "arduino" +msgstr "arduino" + +#: taextras.py:497 msgid "refresh Arduino" msgstr "refresh Arduino" -#: taextras.py:475 +#: taextras.py:498 msgid "Search for connected Arduinos." msgstr "Search for connected Arduinos." -#: taextras.py:476 +#: taextras.py:499 msgid "Arduino" msgstr "Arduino" -#: taextras.py:477 +#: taextras.py:500 msgid "set current Arduino board" msgstr "set current Arduino board" -#: taextras.py:478 +#: taextras.py:501 msgid "number of Arduinos" msgstr "number of Arduinos" -#: taextras.py:479 +#: taextras.py:502 msgid "number of Arduino boards" msgstr "number of Arduino boards" -#: taextras.py:480 +#: taextras.py:503 msgid "Arduino name" msgstr "Arduino name" -#: taextras.py:481 +#: taextras.py:504 msgid "Get the name of an Arduino." msgstr "Get the name of an Arduino." #. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) #. in which an I/O pin is being used. -#: taextras.py:484 +#: taextras.py:507 msgid "pin mode" msgstr "pin mode" -#: taextras.py:487 +#: taextras.py:510 msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." msgstr "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." -#: taextras.py:488 +#: taextras.py:511 #, fuzzy msgid "analog write" msgstr "" @@ -1556,7 +1629,7 @@ msgstr "" "#-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-#\n" "analog write" -#: taextras.py:490 +#: taextras.py:513 #, fuzzy msgid "Write analog value in specified port." msgstr "" @@ -1565,7 +1638,7 @@ msgstr "" "#-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-#\n" "Write analog value in specified port." -#: taextras.py:491 +#: taextras.py:514 #, fuzzy msgid "analog read" msgstr "" @@ -1574,7 +1647,7 @@ msgstr "" "#-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-#\n" "analog read" -#: taextras.py:492 +#: taextras.py:515 #, fuzzy msgid "" "Read value from analog port. Value may be between 0 and 1023. Use Vref to " @@ -1587,102 +1660,102 @@ 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:494 +#: taextras.py:517 msgid "digital write" msgstr "digital write" -#: taextras.py:495 +#: taextras.py:518 msgid "Write digital value to specified port." msgstr "Write digital value to specified port." -#: taextras.py:496 +#: taextras.py:519 msgid "digital read" msgstr "digital read" -#: taextras.py:497 +#: taextras.py:520 msgid "Read value from digital port." msgstr "Read value from digital port." -#: taextras.py:498 +#: taextras.py:521 msgid "Set HIGH value for digital port." msgstr "Set HIGH value for digital port." -#: taextras.py:499 +#: taextras.py:522 msgid "Configure Arduino port for digital input." msgstr "Configure Arduino port for digital input." -#: taextras.py:500 +#: taextras.py:523 msgid "Configure Arduino port to drive a servo." msgstr "Configure Arduino port to drive a servo." -#: taextras.py:502 +#: taextras.py:525 msgid "Configure Arduino port for digital output." msgstr "Configure Arduino port for digital output." -#: taextras.py:503 +#: taextras.py:526 msgid "Configure Arduino port for PWM (pulse-width modulation)." msgstr "Configure Arduino port for PWM (pulse-width modulation)." -#: taextras.py:504 +#: taextras.py:527 #, python-format msgid "Not found Arduino %s" msgstr "Not found Arduino %s" -#: taextras.py:505 +#: taextras.py:528 msgid "The pin must be an integer" msgstr "The pin must be an integer" -#: taextras.py:506 +#: taextras.py:529 msgid "The device must be an integer" msgstr "The device must be an integer" #. TRANS: plugin to control an ExpEyes device -#: taextras.py:511 +#: taextras.py:534 msgid "Palette of Expeyes blocks" msgstr "Palette of Expeyes blocks" #. TRANS: Programmable voltage output -#: taextras.py:513 +#: taextras.py:536 msgid "set PVS" msgstr "set PVS" -#: taextras.py:514 +#: taextras.py:537 msgid "set programmable voltage output" msgstr "set programmable voltage output" #. TRANS: Square wave 1 voltage output -#: taextras.py:516 +#: taextras.py:539 msgid "set SQR1 voltage" msgstr "set SQR1 voltage" -#: taextras.py:517 +#: taextras.py:540 msgid "set square wave 1 voltage output" msgstr "set square wave 1 voltage output" #. TRANS: Square wave 2 voltage output -#: taextras.py:519 +#: taextras.py:542 msgid "set SQR2 voltage" msgstr "set SQR2 voltage" -#: taextras.py:520 +#: taextras.py:543 msgid "set square wave 2 voltage output" msgstr "set square wave 2 voltage output" #. TRANS: Digital output level -#: taextras.py:522 +#: taextras.py:545 msgid "set OD1" msgstr "set OD1" -#: taextras.py:523 +#: taextras.py:546 msgid "set digital output level (OD1) low (0) or high (1)" msgstr "set digital output level (OD1) low (0) or high (1)" #. TRANS: Input 1 voltage level -#: taextras.py:525 +#: taextras.py:548 msgid "IN1 level" msgstr "IN1 level" -#: taextras.py:526 +#: taextras.py:549 msgid "" "returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " "volts" @@ -1691,11 +1764,11 @@ msgstr "" "volts" #. TRANS: Input 2 voltage level -#: taextras.py:529 +#: taextras.py:552 msgid "IN2 level" msgstr "IN2 level" -#: taextras.py:530 +#: taextras.py:553 msgid "" "returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " "volts" @@ -1704,11 +1777,11 @@ msgstr "" "volts" #. TRANS: Resistive sensor voltage level -#: taextras.py:533 +#: taextras.py:556 msgid "SEN level" msgstr "SEN level" -#: taextras.py:534 +#: taextras.py:557 msgid "" "returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " "voltage level <= 2.5 volts" @@ -1716,112 +1789,112 @@ msgstr "" "returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " "voltage level <= 2.5 volts" -#: taextras.py:536 +#: taextras.py:559 msgid "capture" msgstr "capture" -#: taextras.py:537 +#: taextras.py:560 msgid "input" msgstr "input" -#: taextras.py:538 +#: taextras.py:561 msgid "samples" msgstr "samples" -#: taextras.py:539 +#: taextras.py:562 msgid "interval" msgstr "interval" #. TRANS: MS is microseconds -#: taextras.py:541 +#: taextras.py:564 msgid "" "capture multiple samples from input at interval (MS); results pushed to FIFO" msgstr "" "capture multiple samples from input at interval (MS); results pushed to FIFO" #. TRANS: Analog input 1 voltage level -#: taextras.py:544 +#: taextras.py:567 msgid "A1" msgstr "A1" -#: taextras.py:545 +#: taextras.py:568 msgid "read analog input 1 voltage" msgstr "read analogue input 1 voltage" #. TRANS: Analog input 2 voltage level -#: taextras.py:547 +#: taextras.py:570 msgid "A2" msgstr "A2" -#: taextras.py:548 +#: taextras.py:571 msgid "read analog input 2 voltage" msgstr "read analogue input 2 voltage" #. TRANS: Read input 1 voltage -#: taextras.py:550 +#: taextras.py:573 msgid "IN1" msgstr "IN1" -#: taextras.py:551 +#: taextras.py:574 msgid "read input 1 voltage" msgstr "read input 1 voltage" #. TRANS: Read input 2 voltage -#: taextras.py:553 +#: taextras.py:576 msgid "IN2" msgstr "IN2" -#: taextras.py:554 +#: taextras.py:577 msgid "read input 2 voltage" msgstr "read input 2 voltage" #. TRANS: Read analog sensor input voltage -#: taextras.py:556 +#: taextras.py:579 msgid "SEN" msgstr "SEN" -#: taextras.py:557 +#: taextras.py:580 msgid "read analog sensor input voltage" msgstr "read analogue sensor input voltage" #. TRANS: Read square wave 1 input voltage -#: taextras.py:559 +#: taextras.py:582 msgid "SQR1" msgstr "SQR1" -#: taextras.py:560 +#: taextras.py:583 msgid "read square wave 1 voltage" msgstr "read square wave 1 voltage" #. TRANS: Read square wave 2 input voltage -#: taextras.py:562 +#: taextras.py:585 msgid "SQR2" msgstr "SQR2" -#: taextras.py:563 +#: taextras.py:586 msgid "read square wave 2 voltage" msgstr "read square wave 2 voltage" #. TRANS: Read programmable voltage -#: taextras.py:565 +#: taextras.py:588 msgid "PVS" msgstr "PVS" -#: taextras.py:566 +#: taextras.py:589 msgid "read programmable voltage" msgstr "read programmable voltage" -#: taextras.py:567 +#: taextras.py:590 msgid "Expeyes device not found" msgstr "Expeyes device not found" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:279 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281 msgid "resume playing video or audio" msgstr "resume playing video or audio" -#: TurtleArt/taconstants.py:208 TurtleArt/taconstants.py:230 -#: TurtleArt/taconstants.py:251 TurtleArt/taconstants.py:293 -#: TurtleArt/taconstants.py:335 TurtleArt/taconstants.py:377 +#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 +#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 +#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 msgid "Title" msgstr "Title" @@ -1830,15 +1903,15 @@ msgstr "Title" msgid "Average RGB color from camera is pushed to the stack" msgstr "Average RGB colour from camera is pushed to the stack" -#: TurtleArt/tabasics.py:513 +#: TurtleArt/tabasics.py:519 msgid "yellow" msgstr "yellow" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:664 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:670 msgid "displays polar coordinates" msgstr "displays polar coordinates" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:472 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:478 msgid "emptys FILO (first-in-last-out heap)" msgstr "empties FILO (first-in-last-out heap)" @@ -1855,39 +1928,39 @@ msgstr "camera output" msgid "push acceleration in x, y, z to heap" msgstr "push acceleration in x, y, z to heap" -#: TurtleArt/tabasics.py:827 +#: TurtleArt/tabasics.py:837 msgid "if-then operator that uses boolean operators from Numbers palette" msgstr "if-then operator that uses boolean operators from Numbers palette" -#: TurtleArt/tabasics.py:858 +#: TurtleArt/tabasics.py:868 msgid "jogs stack right" msgstr "jogs stack right" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:133 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:135 msgid "Sugar Journal media object" msgstr "Sugar Journal media object" -#: TurtleArt/tabasics.py:967 +#: TurtleArt/tabasics.py:979 msgid "box 2" msgstr "box 2" -#: TurtleArt/tabasics.py:957 +#: TurtleArt/tabasics.py:969 msgid "box 1" msgstr "box 1" -#: TurtleArtActivity.py:748 TurtleArtActivity.py:1033 turtleblocks.py:422 +#: TurtleArtActivity.py:779 TurtleArtActivity.py:1064 turtleblocks.py:453 msgid "Step" msgstr "Step" -#: TurtleArt/tabasics.py:636 +#: TurtleArt/tabasics.py:644 msgid "multiplies two numeric inputs" msgstr "multiplies two numeric inputs" -#: turtleblocks.py:415 +#: turtleblocks.py:446 msgid "Show/hide blocks" msgstr "Show/hide blocks" -#: TurtleArtActivity.py:336 TurtleArtActivity.py:1023 turtleblocks.py:413 +#: TurtleArtActivity.py:350 TurtleArtActivity.py:1054 turtleblocks.py:444 msgid "Hide palette" msgstr "Hide palette" @@ -1899,11 +1972,11 @@ msgstr "Buddies" msgid "My Turtle Art session" msgstr "My Turtle Art session" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:157 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:159 msgid "Sugar Journal video object" msgstr "Sugar Journal video object" -#: TurtleArt/tabasics.py:516 +#: TurtleArt/tabasics.py:522 msgid "cyan" msgstr "cyan" @@ -1917,50 +1990,50 @@ msgstr "" "A Logo-inspired turtle that draws colourful pictures with snap-together " "visual programming blocks" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:921 msgid "xcor of right of screen" msgstr "xcor of right of screen" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:436 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:442 msgid "Palette of extra options" msgstr "Palette of extra options" -#: TurtleArtActivity.py:696 TurtleArtActivity.py:713 TurtleArtActivity.py:752 -#: TurtleArtActivity.py:968 +#: TurtleArtActivity.py:727 TurtleArtActivity.py:744 TurtleArtActivity.py:783 +#: TurtleArtActivity.py:999 msgid "Load example" msgstr "Load example" -#: TurtleArt/tabasics.py:1060 +#: TurtleArt/tabasics.py:1074 msgid "move all blocks to trash" msgstr "move all blocks to wastebasket" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:802 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840 msgid "list" msgstr "list" -#: turtleblocks.py:295 +#: turtleblocks.py:321 #, python-format msgid "Configuration directory not writable: %s" msgstr "Configuration directory not writable: %s" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:277 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:279 msgid "media resume" msgstr "media resume" -#: TurtleArt/tabasics.py:268 TurtleArt/tawindow.py:4248 +#: TurtleArt/tabasics.py:270 TurtleArt/tawindow.py:4302 msgid "heading" msgstr "heading" -#: TurtleArtActivity.py:945 +#: TurtleArtActivity.py:976 msgid "Sharing blocks disabled" msgstr "Sharing blocks disabled" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:239 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:241 msgid "saves turtle graphics as an SVG file in the Sugar Journal" msgstr "saves turtle graphics as an SVG file in the Sugar Journal" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:190 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:204 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:192 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:206 msgid "draws text or show media from the Journal" msgstr "draws text or show media from the Journal" @@ -1968,53 +2041,53 @@ msgstr "draws text or show media from the Journal" msgid "RFID" msgstr "RFID" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:155 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:157 msgid "video" msgstr "video" -#: TurtleArt/tabasics.py:517 +#: TurtleArt/tabasics.py:523 msgid "blue" msgstr "blue" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:656 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662 msgid "displays Cartesian coordinates" msgstr "displays Cartesian coordinates" -#: turtleblocks.py:256 +#: turtleblocks.py:282 msgid "No option action:" msgstr "No option action:" -#: TurtleArt/tabasics.py:866 +#: TurtleArt/tabasics.py:876 msgid "jogs stack down" msgstr "jogs stack down" -#: TurtleArt/tabasics.py:672 +#: TurtleArt/tabasics.py:680 msgid "modular (remainder) operator" msgstr "modular (remainder) operator" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:951 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:989 msgid "bottom y" msgstr "bottom y" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:236 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 msgid "save SVG" msgstr "save SVG" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:613 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:630 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:647 msgid "runs code found in the tamyblock.py module found in the Journal" msgstr "runs code found in the tamyblock.py module found in the Journal" -#: TurtleArt/tabasics.py:431 +#: TurtleArt/tabasics.py:435 msgid "pen down" msgstr "pen down" -#: TurtleArt/tabasics.py:789 +#: TurtleArt/tabasics.py:799 msgid "wait" msgstr "wait" -#: TurtleArt/tabasics.py:976 TurtleArt/tabasics.py:992 +#: TurtleArt/tabasics.py:988 TurtleArt/tabasics.py:1004 msgid "box" msgstr "box" @@ -2022,19 +2095,19 @@ msgstr "box" msgid "Failed to upload!" msgstr "Failed to upload!" -#: TurtleArt/tawindow.py:1156 TurtleArt/tawindow.py:1763 +#: TurtleArt/tawindow.py:1196 TurtleArt/tawindow.py:1811 msgid "shift" msgstr "shift" -#: TurtleArt/tabasics.py:922 TurtleArt/tawindow.py:4521 +#: TurtleArt/tabasics.py:934 TurtleArt/tawindow.py:4589 msgid "invokes named action stack" msgstr "invokes named action stack" -#: TurtleArt/tabasics.py:906 TurtleArt/tabasics.py:909 -#: TurtleArt/tabasics.py:917 TurtleArt/tabasics.py:921 -#: TurtleArt/tawindow.py:1449 TurtleArt/tawindow.py:1546 -#: TurtleArt/tawindow.py:1559 TurtleArt/tawindow.py:2178 -#: TurtleArt/tawindow.py:4507 +#: TurtleArt/tabasics.py:918 TurtleArt/tabasics.py:921 +#: TurtleArt/tabasics.py:929 TurtleArt/tabasics.py:933 +#: TurtleArt/tawindow.py:1496 TurtleArt/tawindow.py:1594 +#: TurtleArt/tawindow.py:1607 TurtleArt/tawindow.py:2227 +#: TurtleArt/tawindow.py:4575 msgid "action" msgstr "action" @@ -2043,20 +2116,20 @@ msgid "do-until-True operator that uses boolean operators from Numbers palette" msgstr "" "do-until-True operator that uses boolean operators from Numbers palette" -#: turtleblocks.py:90 +#: turtleblocks.py:94 msgid "usage is" msgstr "usage is" -#: TurtleArt/tabasics.py:970 +#: TurtleArt/tabasics.py:982 msgid "Variable 2 (numeric value)" msgstr "Variable 2 (numeric value)" -#: TurtleArt/tabasics.py:645 +#: TurtleArt/tabasics.py:653 msgid "divide" msgstr "divide" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:227 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:229 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:240 msgid "picture name" msgstr "picture name" @@ -2065,32 +2138,32 @@ msgstr "picture name" msgid "while" msgstr "while" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:913 msgid "the canvas width" msgstr "the canvas width" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:498 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:514 msgid "empty heap?" msgstr "empty heap?" -#: TurtleArt/tabasics.py:998 TurtleArt/tawindow.py:4548 +#: TurtleArt/tabasics.py:1010 TurtleArt/tawindow.py:4618 msgid "named variable (numeric value)" msgstr "named variable (numeric value)" -#: TurtleArt/tawindow.py:1117 TurtleArt/tawindow.py:1742 +#: TurtleArt/tawindow.py:1157 TurtleArt/tawindow.py:1790 msgid "next" msgstr "next" -#: TurtleArt/tabasics.py:825 +#: TurtleArt/tabasics.py:835 msgid "if then" msgstr "if then" -#: TurtleArt/tabasics.py:453 +#: TurtleArt/tabasics.py:457 msgid "set pen size" msgstr "set pen size" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:821 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859 msgid "presentation template: select Journal object (no description)" msgstr "presentation template: select Journal object (no description)" @@ -2099,15 +2172,15 @@ msgstr "presentation template: select Journal object (no description)" msgid "until" msgstr "until" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:265 msgid "media stop" msgstr "media stop" -#: TurtleArtActivity.py:321 turtleblocks.py:397 +#: TurtleArtActivity.py:334 turtleblocks.py:428 msgid "Turn on hover help" msgstr "Turn on hover help" -#: TurtleArt/tabasics.py:1050 +#: TurtleArt/tabasics.py:1064 msgid "permanently deletes items in trash" msgstr "permanently deletes items in wastebasket" @@ -2120,11 +2193,11 @@ msgstr "" "#-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-#\n" "U- turn" -#: TurtleArt/tabasics.py:1008 +#: TurtleArt/tabasics.py:1020 msgid "top of Action 1 stack" msgstr "top of Action 1 stack" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571 msgid "" "a programmable block: used to add advanced single-variable math equations, e." "g., sin(x)" @@ -2132,30 +2205,30 @@ msgstr "" "a programmable block: used to add advanced single-variable math equations, e." "g., sin(x)" -#: TurtleArt/tabasics.py:784 +#: TurtleArt/tabasics.py:794 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:91 msgid "Palette of flow operators" msgstr "Palette of flow operators" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:751 msgid "top of a collapsed stack" msgstr "top of a collapsed stack" -#: TurtleArt/tabasics.py:840 TurtleArt/tabasics.py:848 +#: TurtleArt/tabasics.py:850 TurtleArt/tabasics.py:858 msgid "if-then-else operator that uses boolean operators from Numbers palette" msgstr "if-then-else operator that uses boolean operators from Numbers palette" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:351 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355 msgid "returns mouse y coordinate" msgstr "returns mouse y coordinate" -#: TurtleArt/tabasics.py:398 +#: TurtleArt/tabasics.py:402 msgid "holds current pen shade" msgstr "holds current pen shade" #. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: pitch, duration, amplitude -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:296 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:298 msgid "sinewave" msgstr "sinewave" @@ -2163,64 +2236,64 @@ msgstr "sinewave" msgid "Login failed" msgstr "Login failed" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:924 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:962 msgid "left x" msgstr "left x" -#: TurtleArt/tabasics.py:226 +#: TurtleArt/tabasics.py:228 msgid "set heading" msgstr "set heading" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:411 msgid "RGB color under the turtle is pushed to the stack" msgstr "RGB colour under the turtle is pushed to the stack" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:814 msgid "declutters canvas by hiding blocks" msgstr "de-clutters canvas by hiding blocks" -#: TurtleArtActivity.py:1033 +#: TurtleArtActivity.py:1064 msgid "w" msgstr "w" -#: TurtleArtActivity.py:1031 +#: TurtleArtActivity.py:1062 msgid "r" msgstr "r" -#: TurtleArtActivity.py:1036 +#: TurtleArtActivity.py:1067 msgid "s" msgstr "s" -#: TurtleArtActivity.py:1024 +#: TurtleArtActivity.py:1055 msgid "p" msgstr "p" -#: TurtleArtActivity.py:1029 +#: TurtleArtActivity.py:1060 msgid "e" msgstr "e" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:551 msgid "Python chr operator" msgstr "Python chr operator" -#: TurtleArt/tabasics.py:857 +#: TurtleArt/tabasics.py:867 msgid "horizontal space" msgstr "horizontal space" -#: TurtleArtActivity.py:663 TurtleArtActivity.py:820 +#: TurtleArtActivity.py:690 TurtleArtActivity.py:851 msgid "Metric coordinates" msgstr "Metric coordinates" -#: TurtleArt/tabasics.py:902 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181 +#: TurtleArt/tabasics.py:914 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:183 msgid "string value" msgstr "string value" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:167 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:169 msgid "description" msgstr "description" -#: TurtleArt/talogo.py:572 +#: TurtleArt/talogo.py:573 msgid "I don't know how to" msgstr "I don't know how to" @@ -2228,20 +2301,20 @@ msgstr "I don't know how to" msgid "Username:" msgstr "Username:" -#: TurtleArt/tabasics.py:470 +#: TurtleArt/tabasics.py:474 msgid "starts filled polygon (used with end fill block)" msgstr "starts filled polygon (used with end fill block)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:835 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 msgid "presentation template: select four Journal objects" msgstr "presentation template: select four Journal objects" -#: TurtleArtActivity.py:602 TurtleArtActivity.py:631 TurtleArtActivity.py:744 -#: TurtleArtActivity.py:814 turtleblocks.py:399 +#: TurtleArtActivity.py:630 TurtleArtActivity.py:658 TurtleArtActivity.py:775 +#: TurtleArtActivity.py:845 turtleblocks.py:430 msgid "View" msgstr "View" -#: TurtleArt/tabasics.py:374 +#: TurtleArt/tabasics.py:378 msgid "sets gray level of the line drawn by the turtle" msgstr "sets grey level of the line drawn by the turtle" @@ -2249,68 +2322,68 @@ msgstr "sets grey level of the line drawn by the turtle" msgid "Password:" msgstr "Password:" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:415 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:419 msgid "turtle sees" msgstr "turtle sees" -#: TurtleArt/tabasics.py:872 +#: TurtleArt/tabasics.py:882 msgid "stop action" msgstr "stop action" -#: TurtleArt/tabasics.py:515 +#: TurtleArt/tabasics.py:521 msgid "green" msgstr "green" -#: TurtleArt/tabasics.py:313 TurtleArt/tabasics.py:327 -#: TurtleArt/tabasics.py:397 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1088 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1093 +#: TurtleArt/tabasics.py:317 TurtleArt/tabasics.py:331 +#: TurtleArt/tabasics.py:401 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1128 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1133 msgid "shade" msgstr "shade" -#: TurtleArt/tabasics.py:317 TurtleArt/tabasics.py:331 +#: TurtleArt/tabasics.py:321 TurtleArt/tabasics.py:335 msgid "fills the background with (color, shade)" msgstr "fills the background with (colour, shade)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:227 msgid "save picture" msgstr "save picture" #: plugins/audio_sensors/audio_sensors.py:119 #: plugins/audio_sensors/audio_sensors.py:127 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:296 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:298 msgid "pitch" msgstr "pitch" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:323 msgid "returns 1 if mouse button is pressed" msgstr "returns 1 if mouse button is pressed" -#: TurtleArtActivity.py:507 TurtleArtActivity.py:666 TurtleArtActivity.py:822 +#: TurtleArtActivity.py:527 TurtleArtActivity.py:693 TurtleArtActivity.py:853 msgid "Rescale coordinates up" msgstr "Rescale coordinates up" -#: TurtleArt/tabasics.py:419 +#: TurtleArt/tabasics.py:423 msgid "pen up" msgstr "pen up" -#: TurtleArt/tabasics.py:511 +#: TurtleArt/tabasics.py:517 msgid "orange" msgstr "orange" -#: TurtleArt/tabasics.py:793 +#: TurtleArt/tabasics.py:803 msgid "pauses program execution a specified number of seconds" msgstr "pauses program execution a specified number of seconds" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:446 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:452 msgid "pushes value onto FILO (first-in last-out heap)" msgstr "pushes value onto FILO (first-in last-out heap)" -#: TurtleArt/tabasics.py:1059 +#: TurtleArt/tabasics.py:1073 msgid "clear all" msgstr "clear all" -#: TurtleArt/tabasics.py:822 TurtleArt/tabasics.py:835 +#: TurtleArt/tabasics.py:832 TurtleArt/tabasics.py:845 msgid "then" msgstr "then" @@ -2318,44 +2391,45 @@ msgstr "then" msgid "Register" msgstr "Register" -#: TurtleArt/tabasics.py:751 +#: TurtleArt/tabasics.py:759 msgid "not" msgstr "not" -#: TurtleArt/tabasics.py:839 TurtleArt/tabasics.py:847 +#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:857 msgid "if then else" msgstr "if then else" -#: TurtleArt/tabasics.py:875 +#: TurtleArt/tabasics.py:885 msgid "stops current action" msgstr "stops current action" -#: TurtleArt/tabasics.py:185 +#: TurtleArt/tabasics.py:187 msgid "turns turtle clockwise (angle in degrees)" msgstr "turns turtle clockwise (angle in degrees)" -#: TurtleArt/tabasics.py:410 +#: TurtleArt/tabasics.py:414 msgid "holds current gray level (can be used in place of a number block)" msgstr "holds current grey level (can be used in place of a number block)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 msgid "xcor of left of screen" msgstr "xcor of left of screen" -#: turtleblocks.py:394 +#: turtleblocks.py:425 msgid "Reset block size" msgstr "Reset block size" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:670 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758 +#: TurtleArt/tabasics.py:122 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:676 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:794 msgid "turtle" msgstr "turtle" -#: TurtleArt/tapalette.py:97 +#: TurtleArt/tapalette.py:98 msgid "displays next palette" msgstr "displays next palette" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:812 msgid "hide blocks" msgstr "hide blocks" @@ -2364,35 +2438,35 @@ msgstr "hide blocks" msgid "light level detected by camera" msgstr "light level detected by camera" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:554 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560 msgid "Python int operator" msgstr "Python int operator" -#: TurtleArt/tabasics.py:732 +#: TurtleArt/tabasics.py:740 msgid "logical less-than operator" msgstr "logical less-than operator" -#: TurtleArt/tabasics.py:1055 +#: TurtleArt/tabasics.py:1069 msgid "restore all blocks from trash" msgstr "restore all blocks from wastebasket" -#: turtleblocks.py:374 +#: turtleblocks.py:404 msgid "Save" msgstr "Save" -#: TurtleArt/tabasics.py:929 +#: TurtleArt/tabasics.py:941 msgid "store in box 1" msgstr "store in box 1" -#: TurtleArt/tabasics.py:943 +#: TurtleArt/tabasics.py:955 msgid "store in box 2" msgstr "store in box 2" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:793 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831 msgid "hides the Sugar toolbars" msgstr "hides the Sugar tool-bars" -#: TurtleArt/tabasics.py:241 +#: TurtleArt/tabasics.py:243 msgid "" "holds current x-coordinate value of the turtle (can be used in place of a " "number block)" @@ -2400,24 +2474,24 @@ msgstr "" "holds current x-coordinate value of the turtle (can be used in place of a " "number block)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:536 msgid "print" msgstr "print" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345 msgid "returns mouse x coordinate" msgstr "returns mouse x coordinate" -#: TurtleArt/tabasics.py:510 +#: TurtleArt/tabasics.py:516 msgid "red" msgstr "red" -#: TurtleArtActivity.py:195 TurtleArtActivity.py:775 TurtleArtActivity.py:958 -#: TurtleArtActivity.py:994 turtleblocks.py:378 +#: TurtleArtActivity.py:207 TurtleArtActivity.py:806 TurtleArtActivity.py:989 +#: TurtleArtActivity.py:1025 turtleblocks.py:408 msgid "Save as Logo" msgstr "Save as Logo" -#: TurtleArt/tabasics.py:347 +#: TurtleArt/tabasics.py:351 msgid "sets color of the line drawn by the turtle" msgstr "sets colour of the line drawn by the turtle" @@ -2434,29 +2508,30 @@ msgstr "Enable collaboration" #: plugins/audio_sensors/audio_sensors.py:75 #: plugins/camera_sensor/camera_sensor.py:63 #: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:313 msgid "Palette of sensor blocks" msgstr "Palette of sensor blocks" -#: TurtleArtActivity.py:779 TurtleArtActivity.py:982 TurtleArtActivity.py:1004 +#: TurtleArtActivity.py:810 TurtleArtActivity.py:1013 +#: TurtleArtActivity.py:1035 msgid "Load plugin" msgstr "Load plugin" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334 msgid "returns True if mouse button is pressed" msgstr "returns True if mouse button is pressed" -#: TurtleArt/tabasics.py:707 +#: TurtleArt/tabasics.py:715 msgid "number" msgstr "number" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:359 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363 msgid "query keyboard" msgstr "query keyboard" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:714 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:926 msgid "top" msgstr "top" @@ -2464,7 +2539,7 @@ msgstr "top" msgid "Submit to Web" msgstr "Submit to Web" -#: TurtleArtActivity.py:658 TurtleArtActivity.py:816 turtleblocks.py:384 +#: TurtleArtActivity.py:685 TurtleArtActivity.py:847 turtleblocks.py:414 msgid "Cartesian coordinates" msgstr "Cartesian coordinates" @@ -2472,45 +2547,45 @@ msgstr "Cartesian coordinates" msgid "Nickname" msgstr "Nickname" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:215 msgid "set scale" msgstr "set scale" -#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:2156 -#: TurtleArtActivity.py:769 +#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:2205 +#: TurtleArtActivity.py:800 msgid "Share selected blocks" msgstr "Share selected blocks" -#: TurtleArt/tabasics.py:520 +#: TurtleArt/tabasics.py:526 msgid "white" msgstr "white" -#: TurtleArt/tabasics.py:892 +#: TurtleArt/tabasics.py:904 msgid "connects action to toolbar run buttons" msgstr "connects action to tool-bar run buttons" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:428 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:432 msgid "elapsed time (in seconds) since program started" msgstr "elapsed time (in seconds) since program started" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:297 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299 msgid "amplitude" msgstr "amplitude" -#: TurtleArt/tawindow.py:1634 TurtleArt/tawindow.py:1673 +#: TurtleArt/tawindow.py:1682 TurtleArt/tawindow.py:1721 #: gnome_plugins/uploader_plugin.py:144 msgid "Cancel" msgstr "Cancel" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:899 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:937 msgid "the canvas height" msgstr "the canvas height" -#: TurtleArt/tabasics.py:619 +#: TurtleArt/tabasics.py:627 msgid "minus" msgstr "minus" -#: TurtleArt/tabasics.py:760 TurtleArt/tabasics.py:763 +#: TurtleArt/tabasics.py:768 TurtleArt/tabasics.py:771 msgid "and" msgstr "and" @@ -2518,17 +2593,17 @@ msgstr "and" msgid "top of a collapsible stack" msgstr "top of a collapsible stack" -#: TurtleArt/talogo.py:630 +#: TurtleArt/talogo.py:632 msgid "as input" msgstr "as input" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:605 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:622 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:638 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:611 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:628 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644 msgid "Python block" msgstr "Python block" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:255 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257 msgid "media wait" msgstr "media wait" @@ -2537,29 +2612,25 @@ msgstr "media wait" msgid "acceleration" msgstr "acceleration" -#: TurtleArt/tabasics.py:491 +#: TurtleArt/tabasics.py:495 msgid "holds current pen size (can be used in place of a number block)" msgstr "holds current pen size (can be used in place of a number block)" -#: TurtleArt/tabasics.py:343 -msgid "set color" -msgstr "set colour" - -#: TurtleArt/tabasics.py:691 +#: TurtleArt/tabasics.py:699 msgid "min" msgstr "min" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:735 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:759 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 msgid "loads a block" msgstr "loads a block" -#: TurtleArt/tabasics.py:308 +#: TurtleArt/tabasics.py:312 msgid "Palette of pen commands" msgstr "Palette of pen commands" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:459 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:465 msgid "shows values in FILO (first-in last-out heap)" msgstr "shows values in FILO (first-in last-out heap)" @@ -2568,108 +2639,108 @@ msgid "do-while-True operator that uses boolean operators from Numbers palette" msgstr "" "do-while-True operator that uses boolean operators from Numbers palette" -#: turtleblocks.py:381 +#: turtleblocks.py:411 msgid "File" msgstr "File" -#: TurtleArt/tabasics.py:754 +#: TurtleArt/tabasics.py:762 msgid "logical NOT operator" msgstr "logical NOT operator" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:867 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:905 msgid "ycor of bottom of screen" msgstr "ycor of bottom of screen" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:828 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:866 msgid "presentation template: select Journal object (with description)" msgstr "presentation template: select Journal object (with description)" -#: TurtleArt/tabasics.py:601 +#: TurtleArt/tabasics.py:609 msgid "Palette of numeric operators" msgstr "Palette of numeric operators" -#: TurtleArt/tabasics.py:633 +#: TurtleArt/tabasics.py:641 msgid "multiply" msgstr "multiply" -#: TurtleArt/tabasics.py:800 +#: TurtleArt/tabasics.py:810 msgid "forever" msgstr "forever" -#: TurtleArtActivity.py:1296 +#: TurtleArtActivity.py:1327 #, python-format msgid "Plugin %s already installed." msgstr "Plugin %s already installed." -#: TurtleArt/tabasics.py:361 +#: TurtleArt/tabasics.py:365 msgid "sets shade of the line drawn by the turtle" msgstr "sets shade of the line drawn by the turtle" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:288 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:290 msgid "speaks text" msgstr "speaks text" -#: TurtleArtActivity.py:260 +#: TurtleArtActivity.py:272 msgid "snapshot" msgstr "snapshot" -#: TurtleArt/tabasics.py:156 +#: TurtleArt/tabasics.py:158 msgid "clean" msgstr "clean" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:849 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:880 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887 msgid "presentation template: select two Journal objects" msgstr "presentation template: select two Journal objects" -#: TurtleArtActivity.py:669 TurtleArtActivity.py:824 turtleblocks.py:390 +#: TurtleArtActivity.py:696 TurtleArtActivity.py:855 turtleblocks.py:421 msgid "Grow blocks" msgstr "Grow blocks" -#: TurtleArtActivity.py:655 TurtleArtActivity.py:815 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:791 +#: TurtleArtActivity.py:682 TurtleArtActivity.py:846 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:829 msgid "Fullscreen" msgstr "Full-screen" -#: turtleblocks.py:271 +#: turtleblocks.py:297 msgid "File not found" msgstr "File not found" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 msgid "show" msgstr "show" -#: TurtleArt/tabasics.py:899 TurtleArt/tabasics.py:900 -#: TurtleArt/tabasics.py:901 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:178 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:179 +#: TurtleArt/tabasics.py:911 TurtleArt/tabasics.py:912 +#: TurtleArt/tabasics.py:913 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:201 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:203 msgid "text" msgstr "text" -#: TurtleArt/tabasics.py:691 +#: TurtleArt/tabasics.py:699 msgid "random" msgstr "random" -#: TurtleArt/tabasics.py:719 +#: TurtleArt/tabasics.py:727 msgid "logical greater-than operator" msgstr "logical greater-than operator" -#: TurtleArt/tabasics.py:173 +#: TurtleArt/tabasics.py:175 msgid "turns turtle counterclockwise (angle in degrees)" msgstr "turns turtle anticlockwise (angle in degrees)" -#: TurtleArt/tabasics.py:521 +#: TurtleArt/tabasics.py:527 msgid "black" msgstr "black" -#: TurtleArt/tabasics.py:684 +#: TurtleArt/tabasics.py:692 msgid "calculates square root" msgstr "calculates square root" -#: TurtleArt/tabasics.py:255 +#: TurtleArt/tabasics.py:257 msgid "" "holds current y-coordinate value of the turtle (can be used in place of a " "number block)" @@ -2677,11 +2748,11 @@ msgstr "" "holds current y-coordinate value of the turtle (can be used in place of a " "number block)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:338 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:342 msgid "mouse x" msgstr "mouse x" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352 msgid "mouse y" msgstr "mouse y" @@ -2689,27 +2760,27 @@ msgstr "mouse y" msgid "stop" msgstr "stop" -#: TurtleArt/tabasics.py:716 +#: TurtleArt/tabasics.py:724 msgid "greater than" msgstr "greater than" -#: TurtleArt/tabasics.py:240 TurtleArt/tawindow.py:4247 +#: TurtleArt/tabasics.py:242 TurtleArt/tawindow.py:4301 msgid "xcor" msgstr "xcor" -#: TurtleArtActivity.py:753 turtleblocks.py:429 util/helpbutton.py:44 +#: TurtleArtActivity.py:784 turtleblocks.py:460 util/helpbutton.py:44 msgid "Help" msgstr "Help" -#: turtleblocks.py:469 +#: turtleblocks.py:500 msgid "Save project?" msgstr "Save project?" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:680 msgid "chooses which turtle to command" msgstr "chooses which turtle to command" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:942 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:980 msgid "right x" msgstr "right x" @@ -2718,32 +2789,32 @@ msgstr "right x" msgid "light level detected by light sensor" msgstr "light level detected by light sensor" -#: TurtleArtActivity.py:1197 TurtleArtActivity.py:1202 -#: TurtleArtActivity.py:1282 +#: TurtleArtActivity.py:1228 TurtleArtActivity.py:1233 +#: TurtleArtActivity.py:1313 msgid "Plugin could not be installed." msgstr "Plugin could not be installed." -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:368 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:372 msgid "keyboard" msgstr "keyboard" -#: TurtleArt/tabasics.py:195 +#: TurtleArt/tabasics.py:197 msgid "arc" msgstr "arc" -#: TurtleArt/tabasics.py:195 +#: TurtleArt/tabasics.py:197 msgid "radius" msgstr "radius" -#: TurtleArtActivity.py:660 TurtleArtActivity.py:818 turtleblocks.py:386 +#: TurtleArtActivity.py:687 TurtleArtActivity.py:849 turtleblocks.py:416 msgid "Polar coordinates" msgstr "Polar coordinates" -#: TurtleArt/tabasics.py:357 +#: TurtleArt/tabasics.py:361 msgid "set shade" msgstr "set shade" -#: TurtleArt/tabasics.py:764 +#: TurtleArt/tabasics.py:772 msgid "logical AND operator" msgstr "logical AND operator" @@ -2755,23 +2826,19 @@ msgstr "" "You must have an account at http://turtleartsite.sugarlabs.org to upload " "your project." -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 -msgid "palette" -msgstr "palette" - -#: TurtleArtActivity.py:747 TurtleArtActivity.py:1031 turtleblocks.py:421 +#: TurtleArtActivity.py:778 TurtleArtActivity.py:1062 turtleblocks.py:452 msgid "Run" msgstr "Run" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:462 msgid "show heap" msgstr "show heap" -#: TurtleArt/tabasics.py:230 +#: TurtleArt/tabasics.py:232 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.)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:759 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795 msgid "selects a palette" msgstr "selects a palette" @@ -2785,19 +2852,19 @@ msgid "Title:" msgstr "Title:" #: plugins/camera_sensor/camera_sensor.py:67 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:125 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127 msgid "Palette of media objects" msgstr "Palette of media objects" -#: TurtleArtActivity.py:647 +#: TurtleArtActivity.py:674 msgid "Restore blocks from trash" msgstr "Restore all blocks from wastebasket" -#: TurtleArt/tabasics.py:884 +#: TurtleArt/tabasics.py:896 msgid "Palette of variable blocks" msgstr "Palette of variable blocks" -#: TurtleArt/tabasics.py:708 +#: TurtleArt/tabasics.py:716 msgid "used as numeric input in mathematic operators" msgstr "used as numeric input in mathematic operators" @@ -2811,7 +2878,7 @@ msgstr "Upload" msgid "Server" msgstr "Server" -#: TurtleArt/tabasics.py:960 +#: TurtleArt/tabasics.py:972 msgid "Variable 1 (numeric value)" msgstr "Variable 1 (numeric value)" @@ -2819,68 +2886,68 @@ msgstr "Variable 1 (numeric value)" msgid "Neighborhood" msgstr "Neighbourhood" -#: TurtleArt/tabasics.py:611 +#: TurtleArt/tabasics.py:619 msgid "adds two alphanumeric inputs" msgstr "adds two alphanumeric inputs" -#: TurtleArt/tabasics.py:740 +#: TurtleArt/tabasics.py:748 msgid "equal" msgstr "equal" -#: TurtleArt/tabasics.py:835 +#: TurtleArt/tabasics.py:845 msgid "else" msgstr "else" -#: TurtleArt/talogo.py:629 +#: TurtleArt/talogo.py:631 msgid "doesn't like" msgstr "doesn't like" -#: turtleblocks.py:467 +#: turtleblocks.py:498 msgid "You have unsaved work. Would you like to save before quitting?" msgstr "You have unsaved work. Would you like to save before quitting?" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:785 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:823 msgid "restores hidden blocks" msgstr "restores hidden blocks" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:720 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:743 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:767 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779 msgid "load" msgstr "load" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:265 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:267 msgid "stop video or audio" msgstr "stop video or audio" -#: TurtleArt/tabasics.py:422 +#: TurtleArt/tabasics.py:426 msgid "Turtle will not draw when moved." msgstr "Turtle will not draw when moved." #. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: pop removes a new item from the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489 msgid "pop" msgstr "pop" -#: TurtleArt/tabasics.py:490 +#: TurtleArt/tabasics.py:494 msgid "pen size" msgstr "pen size" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:706 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:732 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742 msgid "turtle shell" msgstr "turtle shell" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:300 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302 msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)" msgstr "plays a sinewave at frequency, amplitude, and duration (in seconds)" -#: TurtleArt/tabasics.py:680 +#: TurtleArt/tabasics.py:688 msgid "√" msgstr "√" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:287 msgid "speak" msgstr "speak" @@ -2888,50 +2955,50 @@ msgstr "speak" msgid "read value from RFID device" msgstr "read value from RFID device" -#: TurtleArt/tabasics.py:199 +#: TurtleArt/tabasics.py:201 msgid "moves turtle along an arc" msgstr "moves turtle along an arc" -#: TurtleArt/tabasics.py:744 +#: TurtleArt/tabasics.py:752 msgid "logical equal-to operator" msgstr "logical equal-to operator" -#: TurtleArt/tabasics.py:508 +#: TurtleArt/tabasics.py:514 msgid "Palette of pen colors" msgstr "Palette of pen colours" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274 msgid "pause video or audio" msgstr "pause video or audio" -#: TurtleArt/tabasics.py:934 +#: TurtleArt/tabasics.py:946 msgid "stores numeric value in Variable 1" msgstr "stores numeric value in Variable 1" -#: TurtleArt/tabasics.py:948 +#: TurtleArt/tabasics.py:960 msgid "stores numeric value in Variable 2" msgstr "stores numeric value in Variable 2" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:698 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:707 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:743 msgid "put a custom 'shell' on the turtle" msgstr "put a custom 'shell' on the turtle" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:327 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:320 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:331 msgid "button down" msgstr "button down" -#: TurtleArt/tabasics.py:146 +#: TurtleArt/tabasics.py:148 msgid "moves turtle backward" msgstr "moves turtle backward" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:891 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:929 msgid "ycor of top of screen" msgstr "ycor of top of screen" -#: TurtleArt/talogo.py:384 TurtleArtActivity.py:378 TurtleArtActivity.py:750 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1428 +#: TurtleArt/talogo.py:384 TurtleArtActivity.py:392 TurtleArtActivity.py:781 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1469 msgid "Show blocks" msgstr "Show blocks" @@ -2947,23 +3014,23 @@ msgstr "save" msgid "Colors" msgstr "Colours" -#: TurtleArt/tabasics.py:457 +#: TurtleArt/tabasics.py:461 msgid "sets size of the line drawn by the turtle" msgstr "sets size of the line drawn by the turtle" -#: TurtleArtActivity.py:974 turtleblocks.py:372 +#: TurtleArtActivity.py:1005 turtleblocks.py:402 msgid "Open" msgstr "Open" -#: TurtleArt/tawindow.py:1102 TurtleArt/tawindow.py:1103 +#: TurtleArt/tawindow.py:1142 TurtleArt/tawindow.py:1143 msgid "orientation" msgstr "orientation" -#: TurtleArt/tabasics.py:254 TurtleArt/tawindow.py:4248 +#: TurtleArt/tabasics.py:256 TurtleArt/tawindow.py:4302 msgid "ycor" msgstr "ycor" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:579 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585 msgid "" "a programmable block: used to add advanced multi-variable math equations, e." "g., sqrt(x*x+y*y)" @@ -2971,47 +3038,47 @@ msgstr "" "a programmable block: used to add advanced multi-variable math equations, e." "g., sqrt(x*x+y*y)" -#: TurtleArt/tabasics.py:822 TurtleArt/tabasics.py:835 +#: TurtleArt/tabasics.py:832 TurtleArt/tabasics.py:845 msgid "if" msgstr "if" -#: TurtleArt/tabasics.py:214 TurtleArt/tabasics.py:292 +#: TurtleArt/tabasics.py:216 TurtleArt/tabasics.py:294 msgid "" "moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." msgstr "" "moves turtle to position xcor, ycor; (0, 0) is in the centre of the screen." -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:561 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:575 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:589 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:567 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:581 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595 msgid "Python" msgstr "Python" -#: TurtleArtActivity.py:754 turtleblocks.py:424 +#: TurtleArtActivity.py:785 turtleblocks.py:455 msgid "Stop" msgstr "Stop" -#: TurtleArt/tabasics.py:1014 TurtleArt/tabasics.py:1034 +#: TurtleArt/tabasics.py:1026 TurtleArt/tabasics.py:1046 msgid "action 2" msgstr "action 2" -#: TurtleArt/tabasics.py:1005 TurtleArt/tabasics.py:1024 +#: TurtleArt/tabasics.py:1017 TurtleArt/tabasics.py:1036 msgid "action 1" msgstr "action 1" -#: TurtleArt/tabasics.py:479 +#: TurtleArt/tabasics.py:483 msgid "end fill" msgstr "end fill" -#: TurtleArtActivity.py:643 TurtleArtActivity.py:797 turtleblocks.py:402 +#: TurtleArtActivity.py:670 TurtleArtActivity.py:828 turtleblocks.py:433 msgid "Copy" msgstr "Copy" -#: TurtleArtActivity.py:645 TurtleArtActivity.py:798 turtleblocks.py:403 +#: TurtleArtActivity.py:672 TurtleArtActivity.py:829 turtleblocks.py:434 msgid "Paste" msgstr "Paste" -#: TurtleArt/talogo.py:512 +#: TurtleArt/talogo.py:513 msgid "did not output to" msgstr "did not output to" @@ -3023,44 +3090,44 @@ msgstr "Activities" msgid "Upload to Web" msgstr "Upload to Web" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:469 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:475 msgid "empty heap" msgstr "empty heap" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:487 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:493 msgid "pops value off FILO (first-in last-out heap)" msgstr "pops value off FILO (first-in last-out heap)" -#: TurtleArtActivity.py:746 TurtleArtActivity.py:1029 turtleblocks.py:420 +#: TurtleArtActivity.py:777 TurtleArtActivity.py:1060 turtleblocks.py:451 msgid "Clean" msgstr "Clean" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:767 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:805 msgid "Palette of presentation templates" msgstr "Palette of presentation templates" -#: TurtleArt/tabasics.py:195 +#: TurtleArt/tabasics.py:197 msgid "angle" msgstr "angle" -#: TurtleArt/tabasics.py:658 +#: TurtleArt/tabasics.py:666 msgid "identity" msgstr "identity" -#: TurtleArtActivity.py:635 TurtleArtActivity.py:742 TurtleArtActivity.py:771 -#: TurtleArtActivity.py:773 TurtleArtActivity.py:950 +#: TurtleArtActivity.py:662 TurtleArtActivity.py:773 TurtleArtActivity.py:802 +#: TurtleArtActivity.py:804 TurtleArtActivity.py:981 msgid "Save/Load" msgstr "Save/Load" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:933 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:971 msgid "top y" msgstr "top y" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:143 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:145 msgid "audio" msgstr "audio" -#: turtleblocks.py:417 +#: turtleblocks.py:448 msgid "Tools" msgstr "Tools" @@ -3068,16 +3135,16 @@ msgstr "Tools" msgid "Port" msgstr "Port" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:521 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527 msgid "comment" msgstr "comment" -#: TurtleArt/tabasics.py:622 +#: TurtleArt/tabasics.py:630 msgid "subtracts bottom numeric input from top numeric input" msgstr "subtracts bottom numeric input from top numeric input" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272 msgid "media pause" msgstr "media pause" @@ -3085,15 +3152,15 @@ msgstr "media pause" msgid "push destination rgb value to heap" msgstr "push destination rgb value to heap" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365 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:654 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660 msgid "Cartesian" msgstr "Cartesian" -#: TurtleArt/tabasics.py:159 +#: TurtleArt/tabasics.py:161 msgid "clears the screen and reset the turtle" msgstr "clears the screen and reset the turtle" @@ -3102,49 +3169,49 @@ msgstr "clears the screen and reset the turtle" msgid "raw microphone input signal" msgstr "raw microphone input signal" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:421 msgid "returns the color that the turtle \"sees\"" msgstr "returns the colour that the turtle \"sees\"" -#: TurtleArt/tabasics.py:1027 +#: TurtleArt/tabasics.py:1039 msgid "invokes Action 1 stack" msgstr "invokes Action 1 stack" -#: TurtleArt/tabasics.py:124 +#: TurtleArt/tabasics.py:126 msgid "Palette of turtle commands" msgstr "Palette of turtle commands" -#: TurtleArt/tabasics.py:804 +#: TurtleArt/tabasics.py:814 msgid "loops forever" msgstr "loops forever" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:200 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:202 msgid "show aligned" msgstr "show aligned" -#: TurtleArtActivity.py:1297 +#: TurtleArtActivity.py:1328 #, python-format msgid "Do you want to reinstall %s?" msgstr "Do you want to reinstall %s?" -#: TurtleArtActivity.py:776 TurtleArtActivity.py:977 TurtleArtActivity.py:999 -#: turtleblocks.py:373 +#: TurtleArtActivity.py:807 TurtleArtActivity.py:1008 +#: TurtleArtActivity.py:1030 turtleblocks.py:403 msgid "Load project" msgstr "Load project" -#: TurtleArtActivity.py:629 TurtleArtActivity.py:745 +#: TurtleArtActivity.py:656 TurtleArtActivity.py:776 msgid "Project" msgstr "Project" -#: turtleblocks.py:423 +#: turtleblocks.py:454 msgid "Debug" msgstr "Debug" -#: TurtleArtActivity.py:313 TurtleArtActivity.py:675 TurtleArtActivity.py:826 +#: TurtleArtActivity.py:325 TurtleArtActivity.py:702 TurtleArtActivity.py:857 msgid "Turn off hover help" msgstr "Turn off hover help" -#: TurtleArt/tabasics.py:668 TurtleArt/tabasics.py:669 +#: TurtleArt/tabasics.py:676 TurtleArt/tabasics.py:677 msgid "mod" msgstr "mod" @@ -3152,15 +3219,15 @@ msgstr "mod" msgid "Password" msgstr "Password" -#: TurtleArt/tabasics.py:865 +#: TurtleArt/tabasics.py:875 msgid "vertical space" msgstr "vertical space" -#: TurtleArtActivity.py:1278 +#: TurtleArtActivity.py:1309 msgid "Please restart Turtle Art in order to use the plugin." msgstr "Please restart Turtle Art in order to use the plugin." -#: TurtleArt/tabasics.py:481 +#: TurtleArt/tabasics.py:485 msgid "completes filled polygon (used with start fill block)" msgstr "completes filled polygon (used with start fill block)" @@ -3168,72 +3235,72 @@ msgstr "completes filled polygon (used with start fill block)" msgid "Share" msgstr "Share" -#: TurtleArt/tabasics.py:728 +#: TurtleArt/tabasics.py:736 msgid "less than" msgstr "less than" -#: TurtleArt/tabasics.py:681 +#: TurtleArt/tabasics.py:689 msgid "square root" msgstr "square root" -#: turtleblocks.py:388 +#: turtleblocks.py:419 msgid "Rescale coordinates" msgstr "Rescale coordinates" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:821 msgid "show blocks" msgstr "show blocks" -#: turtleblocks.py:380 +#: turtleblocks.py:410 msgid "Quit" msgstr "Quit" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:169 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:171 msgid "Sugar Journal description field" msgstr "Sugar Journal description field" -#: TurtleArt/tabasics.py:371 +#: TurtleArt/tabasics.py:375 msgid "set gray" msgstr "set grey" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:806 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:844 msgid "presentation bulleted list" msgstr "presentation bulleted list" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:297 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299 msgid "duration" msgstr "duration" -#: turtleblocks.py:371 +#: turtleblocks.py:397 msgid "New" msgstr "New" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:523 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 msgid "places a comment in your code" msgstr "places a comment in your code" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:408 msgid "read pixel" msgstr "read pixel" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 msgid "scale" msgstr "scale" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:864 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902 msgid "bottom" msgstr "bottom" -#: TurtleArt/tabasics.py:518 +#: TurtleArt/tabasics.py:524 msgid "purple" msgstr "purple" -#: TurtleArtActivity.py:503 +#: TurtleArtActivity.py:518 msgid "Rescale coordinates down" msgstr "Rescale coordinates down" #: TurtleArt/tautils.py:593 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:712 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:748 msgid "click to open" msgstr "click to open" @@ -3250,15 +3317,15 @@ msgstr "Configuration" msgid "Description:" msgstr "Description:" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:132 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:134 msgid "journal" msgstr "journal" -#: TurtleArt/tabasics.py:1049 +#: TurtleArt/tabasics.py:1063 msgid "empty trash" msgstr "empty wastebasket" -#: TurtleArt/tabasics.py:434 +#: TurtleArt/tabasics.py:438 msgid "Turtle will draw when moved." msgstr "Turtle will draw when moved." @@ -3266,56 +3333,57 @@ msgstr "Turtle will draw when moved." msgid "Load..." msgstr "Load..." -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:145 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:147 msgid "Sugar Journal audio object" msgstr "Sugar Journal audio object" -#: TurtleArt/talogo.py:374 TurtleArtActivity.py:749 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1437 +#: TurtleArt/talogo.py:374 TurtleArt/tawindow.py:1457 TurtleArtActivity.py:780 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1478 msgid "Stop turtle" msgstr "Stop turtle" -#: turtleblocks.py:425 +#: turtleblocks.py:456 msgid "Turtle" msgstr "Turtle" -#: TurtleArt/tapalette.py:98 +#: TurtleArt/tapalette.py:99 msgid "changes the orientation of the palette of blocks" msgstr "changes the orientation of the palette of blocks" -#: TurtleArt/tabasics.py:976 TurtleArt/tawindow.py:4571 +#: TurtleArt/tabasics.py:988 TurtleArt/tawindow.py:4643 msgid "store in" msgstr "store in" -#: TurtleArt/talogo.py:388 TurtleArtActivity.py:382 TurtleArtActivity.py:1035 +#: TurtleArt/talogo.py:388 TurtleArtActivity.py:396 TurtleArtActivity.py:1066 msgid "Hide blocks" msgstr "Hide blocks" -#: TurtleArtActivity.py:780 TurtleArtActivity.py:985 TurtleArtActivity.py:1007 +#: TurtleArtActivity.py:811 TurtleArtActivity.py:1016 +#: TurtleArtActivity.py:1038 msgid "Load Python block" msgstr "Load Python block" -#: TurtleArt/tabasics.py:607 +#: TurtleArt/tabasics.py:615 msgid "plus" msgstr "plus" -#: TurtleArt/tabasics.py:771 TurtleArt/tabasics.py:774 +#: TurtleArt/tabasics.py:779 TurtleArt/tabasics.py:782 msgid "or" msgstr "or" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:814 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:852 msgid "presentation template: list of bullets" msgstr "presentation template: list of bullets" -#: TurtleArt/tabasics.py:660 +#: TurtleArt/tabasics.py:668 msgid "identity operator used for extending blocks" msgstr "identity operator used for extending blocks" -#: TurtleArtActivity.py:672 TurtleArtActivity.py:825 turtleblocks.py:392 +#: TurtleArtActivity.py:699 TurtleArtActivity.py:856 turtleblocks.py:423 msgid "Shrink blocks" msgstr "Shrink blocks" -#: TurtleArt/tabasics.py:269 +#: TurtleArt/tabasics.py:271 msgid "" "holds current heading value of the turtle (can be used in place of a number " "block)" @@ -3323,55 +3391,55 @@ msgstr "" "holds current heading value of the turtle (can be used in place of a number " "block)" -#: TurtleArt/tawindow.py:4359 +#: TurtleArt/tawindow.py:4424 msgid "image" msgstr "image" -#: TurtleArt/tabasics.py:695 +#: TurtleArt/tabasics.py:703 msgid "returns random number between minimum (top) and maximum (bottom) values" msgstr "" "returns random number between minimum (top) and maximum (bottom) values" -#: TurtleArt/tabasics.py:385 +#: TurtleArt/tabasics.py:389 msgid "holds current pen color (can be used in place of a number block)" msgstr "holds current pen colour (can be used in place of a number block)" -#: TurtleArtActivity.py:330 turtleblocks.py:411 +#: TurtleArtActivity.py:344 turtleblocks.py:442 msgid "Show palette" msgstr "Show palette" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:228 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:230 msgid "saves a picture to the Sugar Journal" msgstr "saves a picture to the Sugar Journal" -#: TurtleArtActivity.py:268 TurtleArtActivity.py:709 TurtleArtActivity.py:751 -#: TurtleArtActivity.py:964 TurtleArtActivity.py:997 +#: TurtleArtActivity.py:280 TurtleArtActivity.py:740 TurtleArtActivity.py:782 +#: TurtleArtActivity.py:995 TurtleArtActivity.py:1028 msgid "Save snapshot" msgstr "Save snapshot" -#: TurtleArt/tabasics.py:889 pysamples/grecord.py:214 +#: TurtleArt/tabasics.py:901 pysamples/grecord.py:214 msgid "start" msgstr "start" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:501 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:511 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:507 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:517 msgid "returns True if heap is empty" msgstr "returns True if heap is empty" -#: TurtleArt/tabasics.py:133 +#: TurtleArt/tabasics.py:135 msgid "moves turtle forward" msgstr "moves turtle forward" -#: TurtleArt/tabasics.py:129 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 +#: TurtleArt/tabasics.py:131 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:770 msgid "forward" msgstr "forward" -#: TurtleArt/tabasics.py:980 TurtleArt/tabasics.py:995 -#: TurtleArt/tawindow.py:1453 TurtleArt/tawindow.py:1585 -#: TurtleArt/tawindow.py:2182 TurtleArt/tawindow.py:4534 -#: TurtleArt/tawindow.py:4562 +#: TurtleArt/tabasics.py:992 TurtleArt/tabasics.py:1007 +#: TurtleArt/tawindow.py:1500 TurtleArt/tawindow.py:1633 +#: TurtleArt/tawindow.py:2231 TurtleArt/tawindow.py:4604 +#: TurtleArt/tawindow.py:4634 msgid "my box" msgstr "my box" @@ -3379,31 +3447,31 @@ msgstr "my box" msgid "Account ID" msgstr "Account ID" -#: TurtleArt/tawindow.py:1467 +#: TurtleArt/tawindow.py:1514 msgid "Select blocks to share" msgstr "Select blocks to share" -#: TurtleArt/tabasics.py:142 +#: TurtleArt/tabasics.py:144 msgid "back" msgstr "back" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:217 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:219 msgid "sets the scale of media" msgstr "sets the scale of media" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:250 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252 msgid "holds current scale value" msgstr "holds current scale value" -#: TurtleArt/tabasics.py:911 +#: TurtleArt/tabasics.py:923 msgid "top of nameable action stack" msgstr "top of nameable action stack" -#: TurtleArt/tabasics.py:981 TurtleArt/tawindow.py:4576 +#: TurtleArt/tabasics.py:993 TurtleArt/tawindow.py:4648 msgid "stores numeric value in named variable" msgstr "stores numeric value in named variable" -#: TurtleArt/tabasics.py:775 +#: TurtleArt/tabasics.py:783 msgid "logical OR operator" msgstr "logical OR operator" @@ -3414,7 +3482,7 @@ msgstr "logical OR operator" msgid "microphone input voltage" msgstr "microphone input voltage" -#: TurtleArt/tabasics.py:816 +#: TurtleArt/tabasics.py:826 msgid "loops specified number of times" msgstr "loops specified number of times" @@ -3422,23 +3490,23 @@ msgstr "loops specified number of times" msgid "Save..." msgstr "Save..." -#: TurtleArt/tabasics.py:1037 +#: TurtleArt/tabasics.py:1049 msgid "invokes Action 2 stack" msgstr "invokes Action 2 stack" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:746 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:782 msgid "setxy" msgstr "setxy" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:953 msgid "title y" msgstr "title y" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:906 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:944 msgid "title x" msgstr "title x" -#: TurtleArt/tabasics.py:313 TurtleArt/tabasics.py:326 +#: TurtleArt/tabasics.py:317 TurtleArt/tabasics.py:330 msgid "fill screen" msgstr "fill screen" @@ -3446,37 +3514,38 @@ msgstr "fill screen" msgid "other" msgstr "other" -#: turtleblocks.py:375 +#: turtleblocks.py:405 msgid "Save as" msgstr "Save as" -#: TurtleArt/tabasics.py:210 TurtleArt/tabasics.py:288 +#: TurtleArt/tabasics.py:212 TurtleArt/tabasics.py:290 msgid "set xy" msgstr "set xy" -#: TurtleArt/tabasics.py:1045 +#: TurtleArt/tabasics.py:1055 TurtleArt/tabasics.py:1059 +#: TurtleArt/tapalette.py:138 TurtleArt/tapalette.py:139 msgid "trash" msgstr "wastebasket" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:668 msgid "polar" msgstr "polar" -#: TurtleArt/tabasics.py:811 TurtleArt/tabasics.py:815 +#: TurtleArt/tabasics.py:821 TurtleArt/tabasics.py:825 msgid "repeat" msgstr "repeat" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 msgid "wait for current video or audio to complete" msgstr "wait for current video or audio to complete" -#: TurtleArtActivity.py:252 TurtleArtActivity.py:774 TurtleArtActivity.py:955 -#: TurtleArtActivity.py:991 turtleblocks.py:376 +#: TurtleArtActivity.py:264 TurtleArtActivity.py:805 TurtleArtActivity.py:986 +#: TurtleArtActivity.py:1022 turtleblocks.py:406 msgid "Save as image" msgstr "Save as image" -#: TurtleArtActivity.py:597 TurtleArtActivity.py:633 TurtleArtActivity.py:743 -#: TurtleArtActivity.py:796 turtleblocks.py:408 +#: TurtleArtActivity.py:625 TurtleArtActivity.py:660 TurtleArtActivity.py:774 +#: TurtleArtActivity.py:827 turtleblocks.py:439 msgid "Edit" msgstr "Edit" @@ -3487,39 +3556,39 @@ msgstr "Edit" msgid "microphone input resistance" msgstr "microphone input resistance" -#: TurtleArt/tabasics.py:1017 +#: TurtleArt/tabasics.py:1029 msgid "top of Action 2 stack" msgstr "top of Action 2 stack" -#: TurtleArt/tabasics.py:648 +#: TurtleArt/tabasics.py:656 msgid "" "divides top numeric input (numerator) by bottom numeric input (denominator)" msgstr "" "divides top numeric input (numerator) by bottom numeric input (denominator)" -#: TurtleArt/tabasics.py:691 +#: TurtleArt/tabasics.py:699 msgid "max" msgstr "max" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:534 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540 msgid "prints value in status block at bottom of the screen" msgstr "prints value in status block at bottom of the screen" -#: TurtleArt/tabasics.py:468 +#: TurtleArt/tabasics.py:472 msgid "start fill" msgstr "start fill" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:372 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376 msgid "holds results of query-keyboard block as ASCII" msgstr "holds results of query-keyboard block as ASCII" #. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: push adds a new item to the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:443 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:449 msgid "push" msgstr "push" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:599 msgid "" "a programmable block: used to add advanced multi-variable math equations, e." "g., sin(x+y+z)" @@ -3527,11 +3596,11 @@ msgstr "" "a programmable block: used to add advanced multi-variable math equations, e." "g., sin(x+y+z)" -#: TurtleArt/tabasics.py:1054 +#: TurtleArt/tabasics.py:1068 msgid "restore all" msgstr "restore all" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:287 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:289 msgid "hello" msgstr "hello" @@ -3539,45 +3608,65 @@ msgstr "hello" msgid "TurtleBlocks" msgstr "TurtleBlocks" -#: TurtleArt/tabasics.py:443 +#: TurtleArt/tabasics.py:308 +msgid "pen" +msgstr "pen" + +#: TurtleArt/tabasics.py:347 +msgid "set color" +msgstr "set colour" + +#: TurtleArt/tabasics.py:447 msgid "pen down?" msgstr "pen down?" -#: TurtleArt/tabasics.py:445 +#: TurtleArt/tabasics.py:449 msgid "returns True if pen is down" msgstr "returns True if pen is down" -#: TurtleArt/tawindow.py:1414 -msgid "" -"Please hit the Stop Button before making changes to your Turtle Blocks " -"program" -msgstr "" -"Please hit the Stop Button before making changes to your Turtle Blocks " -"program" +#: TurtleArt/tabasics.py:510 +msgid "colors" +msgstr "colors" + +#: TurtleArt/tabasics.py:605 +msgid "numbers" +msgstr "numbers" -#: TurtleArt/tawindow.py:1630 TurtleArtActivity.py:650 -#: TurtleArtActivity.py:799 turtleblocks.py:404 +#: TurtleArt/tabasics.py:790 +msgid "flow" +msgstr "flow" + +#: TurtleArt/tabasics.py:892 +msgid "blocks" +msgstr "blocks" + +#: TurtleArt/tawindow.py:1461 +msgid "Please hit the Stop Button before making changes to your program" +msgstr "Please hit the Stop Button before making changes to your program" + +#: TurtleArt/tawindow.py:1678 TurtleArtActivity.py:677 +#: TurtleArtActivity.py:830 turtleblocks.py:435 msgid "Save stack" msgstr "Save stack" -#: TurtleArt/tawindow.py:1631 TurtleArt/tawindow.py:1645 +#: TurtleArt/tawindow.py:1679 TurtleArt/tawindow.py:1693 msgid "Really overwrite stack?" msgstr "Really overwrite stack?" -#: TurtleArt/tawindow.py:1638 TurtleArt/tawindow.py:1648 +#: TurtleArt/tawindow.py:1686 TurtleArt/tawindow.py:1696 msgid "Overwrite stack" msgstr "Overwrite stack" -#: TurtleArt/tawindow.py:1669 TurtleArt/tawindow.py:1677 -#: TurtleArt/tawindow.py:1686 TurtleArtActivity.py:652 turtleblocks.py:406 +#: TurtleArt/tawindow.py:1717 TurtleArt/tawindow.py:1725 +#: TurtleArt/tawindow.py:1734 TurtleArtActivity.py:679 turtleblocks.py:437 msgid "Delete stack" msgstr "Delete stack" -#: TurtleArt/tawindow.py:1670 TurtleArt/tawindow.py:1683 +#: TurtleArt/tawindow.py:1718 TurtleArt/tawindow.py:1731 msgid "Really delete stack?" msgstr "Really delete stack?" -#: TurtleArtActivity.py:927 +#: TurtleArtActivity.py:958 msgid "Palettes" msgstr "Palettes" @@ -3585,16 +3674,60 @@ msgstr "Palettes" msgid "Facebook wall post" msgstr "Facebook wall post" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:123 +msgid "media" +msgstr "media" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:438 +msgid "extras" +msgstr "extras" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:688 +msgid "turtle x" +msgstr "turtle x" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:691 +msgid "Returns x coordinate of turtle" +msgstr "Returns x coordinate of turtle" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:698 +msgid "turtle y" +msgstr "turtle y" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701 +msgid "Returns y coordinate of turtle" +msgstr "Returns y coordinate of turtle" + #. TRANS: pop removes a new item from the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:709 msgid "active turtle" msgstr "active turtle" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:712 msgid "the name of the active turtle" msgstr "the name of the active turtle" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:967 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:720 +msgid "turtle heading" +msgstr "turtle heading" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 +msgid "Returns heading of turtle" +msgstr "Returns heading of turtle" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:792 +msgid "select palette" +msgstr "select palette" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:801 +msgid "portfolio" +msgstr "portfolio" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1002 +msgid "my blocks" +msgstr "my blocks" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1007 msgid "Palette of user-defined operators" msgstr "Palette of user-defined operators" @@ -3627,10 +3760,27 @@ msgstr "" msgid "turns the turtle 180 degrees" msgstr "turns the turtle 180 degrees" -#: turtleblocks.py:428 +#: turtleblocks.py:398 +msgid "Show sample projects" +msgstr "Show sample projects" + +#: turtleblocks.py:400 +msgid "Hide sample projects" +msgstr "Hide sample projects" + +#: turtleblocks.py:459 msgid "About..." msgstr "About..." +#~ msgid "touch" +#~ msgstr "touch" + +#~ msgid "ultrasonic" +#~ msgstr "ultrasonic" + +#~ msgid "touch sensor" +#~ msgstr "touch sensor" + #~ msgid "custom module sensor A" #~ msgstr "custom module sensor A" @@ -3781,6 +3931,9 @@ msgstr "About..." #~ msgid "sets color of text drawn by the turtle" #~ msgstr "sets colour of text drawn by the turtle" +#~ msgid "palette" +#~ msgstr "palette" + #~ msgid "presentation 2x2" #~ msgstr "presentation 2x2" @@ -3873,15 +4026,6 @@ msgstr "About..." #~ msgid "return calibration 2" #~ msgstr "return calibration 2" -#~ msgid "RGB" -#~ msgstr "RGB" - -#~ msgid "YUV" -#~ msgstr "YUV" - -#~ msgid "HSV" -#~ msgstr "HSV" - #~ msgid "Please check the port." #~ msgstr "Please check the port." @@ -4096,9 +4240,6 @@ msgstr "About..." #~ msgid " clean " #~ msgstr " clean " -#~ msgid "numbers" -#~ msgstr "numbers" - #~ msgid "write" #~ msgstr "write" @@ -4110,9 +4251,6 @@ msgstr "About..." #~ msgstr "" #~ "a programmable block: used to add advanced math equations, e.g., sin(x)" -#~ msgid "blocks" -#~ msgstr "blocks" - #~ msgid "text size" #~ msgstr "text size" @@ -4125,12 +4263,6 @@ msgstr "About..." #~ msgid "picture top" #~ msgstr "picture top" -#~ msgid "flow" -#~ msgstr "flow" - -#~ msgid "portfolio" -#~ msgstr "portfolio" - #~ msgid "restores most recent blocks from trash" #~ msgstr "restores most recent blocks from trash" @@ -4149,9 +4281,6 @@ msgstr "About..." #~ msgid "Trashcan" #~ msgstr "Trash-can" -#~ msgid "pen" -#~ msgstr "pen" - #~ msgid "picture right" #~ msgstr "picture right" @@ -4167,9 +4296,6 @@ msgstr "About..." #~ msgid "holds current text size (can be used in place of a number block)" #~ msgstr "holds current text size (can be used in place of a number block)" -#~ msgid "extras" -#~ msgstr "extras" - #~ msgid "d" #~ msgstr "d" diff --git a/po/en_US.po b/po/en_US.po index 4c8c2d0..df78e0c 100644 --- a/po/en_US.po +++ b/po/en_US.po @@ -18,8 +18,8 @@ msgstr "" "#-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-09-14 00:32-0400\n" -"PO-Revision-Date: 2013-09-16 02:57+0200\n" +"POT-Creation-Date: 2013-10-09 14:26-0400\n" +"PO-Revision-Date: 2013-10-10 01:30+0200\n" "Last-Translator: Chris \n" "Language-Team: LANGUAGE \n" "Language: en_US\n" @@ -31,8 +31,8 @@ msgstr "" "#-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-07-26 00:31-0400\n" -"PO-Revision-Date: 2013-07-27 06:01+0200\n" +"POT-Creation-Date: 2013-10-08 00:30-0400\n" +"PO-Revision-Date: 2013-10-09 00:25+0200\n" "Last-Translator: Chris \n" "Language-Team: LANGUAGE \n" "Language: en_US\n" @@ -182,89 +182,93 @@ msgid "custom module %s" msgstr "custom module %s" #: taextras.py:93 +msgid "sensor a" +msgstr "sensor a" + +#: taextras.py:94 +msgid "sensor b" +msgstr "sensor b" + +#: taextras.py:95 +msgid "sensor c" +msgstr "sensor c" + +#: taextras.py:96 +msgid "actuator a" +msgstr "actuator a" + +#: taextras.py:97 +msgid "actuator b" +msgstr "actuator b" + +#: taextras.py:98 +msgid "actuator c" +msgstr "actuator c" + +#: taextras.py:99 msgid "LED" msgstr "LED" -#: taextras.py:94 +#: taextras.py:100 taextras.py:397 msgid "button" msgstr "button" -#: taextras.py:95 taextras.py:384 TurtleArt/tabasics.py:327 -#: TurtleArt/tabasics.py:409 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1090 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1095 +#: taextras.py:101 taextras.py:402 TurtleArt/tabasics.py:331 +#: TurtleArt/tabasics.py:413 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1129 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1134 msgid "gray" msgstr "gray" -#: taextras.py:96 taextras.py:382 +#: taextras.py:102 taextras.py:400 msgid "light" msgstr "light" -#: taextras.py:97 taextras.py:356 +#: taextras.py:103 taextras.py:376 taextras.py:398 msgid "distance" msgstr "distance" -#: taextras.py:98 plugins/audio_sensors/audio_sensors.py:151 +#: taextras.py:104 plugins/audio_sensors/audio_sensors.py:151 #: plugins/audio_sensors/audio_sensors.py:165 #: plugins/audio_sensors/audio_sensors.py:179 #: plugins/audio_sensors/audio_sensors.py:193 msgid "resistance" msgstr "resistance" -#: taextras.py:99 plugins/audio_sensors/audio_sensors.py:157 +#: taextras.py:105 plugins/audio_sensors/audio_sensors.py:157 #: plugins/audio_sensors/audio_sensors.py:171 #: plugins/audio_sensors/audio_sensors.py:185 #: plugins/audio_sensors/audio_sensors.py:199 msgid "voltage" msgstr "voltage" -#: taextras.py:100 +#: taextras.py:106 msgid "temperature" msgstr "temperature" -#: taextras.py:101 -msgid "sensor a" -msgstr "sensor a" - -#: taextras.py:102 -msgid "sensor b" -msgstr "sensor b" - -#: taextras.py:103 -msgid "sensor c" -msgstr "sensor c" - -#: taextras.py:104 -msgid "actuator a" -msgstr "actuator a" - -#: taextras.py:105 -msgid "actuator b" -msgstr "actuator b" - -#: taextras.py:106 -msgid "actuator c" -msgstr "actuator c" - #: taextras.py:107 +msgid "butia" +msgstr "butia" + +#: taextras.py:108 msgid "Butia Robot" msgstr "Butia Robot" -#: taextras.py:108 +#: taextras.py:109 msgid "refresh Butia" msgstr "refresh Butia" -#: taextras.py:109 +#: taextras.py:110 msgid "refresh the state of the Butia palette and blocks" msgstr "refresh the state of the Butia palette and blocks" #. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: This string is shorthand for "battery charge of Butia" -#: taextras.py:111 +#: taextras.py:112 msgid "battery charge Butia" msgstr "battery charge Butia" -#: taextras.py:112 +#: taextras.py:113 msgid "" "returns the battery charge in volts. If no motors present, it returns 255" msgstr "" @@ -272,290 +276,319 @@ msgstr "" #. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: This string is shorthand for "speed of Butia" -#: taextras.py:114 +#: taextras.py:115 msgid "speed Butia" msgstr "speed Butia" -#: taextras.py:115 +#: taextras.py:116 msgid "set the speed of the Butia motors" msgstr "set the speed of the Butia motors" -#: taextras.py:116 +#: taextras.py:117 msgid "move Butia" msgstr "move Butia" -#: taextras.py:117 TurtleArt/tabasics.py:169 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856 +#: taextras.py:118 TurtleArt/tabasics.py:171 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 msgid "left" msgstr "left" -#: taextras.py:118 TurtleArt/tabasics.py:181 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:880 +#: taextras.py:119 TurtleArt/tabasics.py:183 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:918 msgid "right" msgstr "right" -#: taextras.py:119 +#: taextras.py:120 msgid "moves the Butia motors at the specified speed" msgstr "moves the Butia motors at the specified speed" -#: taextras.py:120 +#: taextras.py:121 msgid "stop Butia" msgstr "stop Butia" -#: taextras.py:121 +#: taextras.py:122 msgid "stop the Butia robot" msgstr "stop the Butia robot" #. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: This string is shorthand for "move Butia forward" -#: taextras.py:123 +#: taextras.py:124 msgid "forward Butia" msgstr "forward Butia" -#: taextras.py:124 +#: taextras.py:125 msgid "move the Butia robot forward" msgstr "move the Butia robot forward" #. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: This string is shorthand for "turn Butia left" -#: taextras.py:126 +#: taextras.py:127 msgid "left Butia" msgstr "left Butia" -#: taextras.py:127 +#: taextras.py:128 msgid "turn the Butia robot at left" msgstr "turn the Butia robot at left" #. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: This string is shorthand for "turn Butia right" -#: taextras.py:129 +#: taextras.py:130 msgid "right Butia" msgstr "right Butia" -#: taextras.py:130 +#: taextras.py:131 msgid "turn the Butia robot at right" msgstr "turn the Butia robot at right" #. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: This string is shorthand for "move Butia backward" -#: taextras.py:132 +#: taextras.py:133 msgid "backward Butia" msgstr "backward Butia" -#: taextras.py:133 +#: taextras.py:134 msgid "move the Butia robot backward" msgstr "move the Butia robot backward" -#: taextras.py:134 +#: taextras.py:135 +msgid "butia-extra" +msgstr "butia-extra" + +#. TRANS: cast means data type conversion +#: taextras.py:137 msgid "Butia Robot extra blocks" msgstr "Butia Robot extra blocks" -#: taextras.py:135 +#: taextras.py:138 msgid "pin mode Butia" msgstr "pin mode Butia" -#: taextras.py:136 taextras.py:319 taextras.py:485 +#: taextras.py:139 taextras.py:339 taextras.py:508 msgid "pin" msgstr "pin" -#: taextras.py:137 taextras.py:486 +#: taextras.py:140 taextras.py:509 msgid "mode" msgstr "mode" -#: taextras.py:138 +#: taextras.py:141 msgid "Select the pin function (INPUT, OUTPUT)." msgstr "Select the pin function (INPUT, OUTPUT)." -#: taextras.py:139 +#: taextras.py:142 msgid "read pin Butia" msgstr "read pin Butia" -#: taextras.py:140 +#: taextras.py:143 msgid "read the value of a pin" msgstr "read the value of a pin" -#: taextras.py:141 +#: taextras.py:144 msgid "write pin Butia" msgstr "write pin Butia" -#: taextras.py:142 taextras.py:489 TurtleArt/tabasics.py:976 -#: TurtleArt/tawindow.py:4581 +#: taextras.py:145 taextras.py:512 TurtleArt/tabasics.py:988 +#: TurtleArt/tawindow.py:4643 msgid "value" msgstr "value" -#: taextras.py:143 +#: taextras.py:146 msgid "set a hack pin to 0 or 1" msgstr "set a hack pin to 0 or 1" -#: taextras.py:144 taextras.py:463 +#: taextras.py:147 taextras.py:485 msgid "INPUT" msgstr "INPUT" -#: taextras.py:145 +#: taextras.py:148 msgid "Configure hack pin for digital input." msgstr "Configure hack pin for digital input." -#: taextras.py:146 taextras.py:461 +#: taextras.py:149 taextras.py:483 msgid "HIGH" msgstr "HIGH" -#: taextras.py:147 +#: taextras.py:150 msgid "Set HIGH value for digital pin." msgstr "Set HIGH value for digital pin." -#: taextras.py:148 taextras.py:462 +#: taextras.py:151 taextras.py:484 msgid "LOW" msgstr "LOW" -#: taextras.py:149 taextras.py:501 +#: taextras.py:152 taextras.py:524 msgid "Set LOW value for digital port." msgstr "Set LOW value for digital port." -#: taextras.py:150 taextras.py:464 +#: taextras.py:153 taextras.py:486 msgid "OUTPUT" msgstr "OUTPUT" -#: taextras.py:151 +#: taextras.py:154 msgid "Configure hack port for digital output." msgstr "Configure hack port for digital output." -#: taextras.py:152 +#: taextras.py:155 +msgid "butia-cast" +msgstr "butia-cast" + +#: taextras.py:156 msgid "Butia Robot cast blocks" msgstr "Butia Robot cast blocks" -#: taextras.py:153 +#: taextras.py:157 msgid "Butia" msgstr "Butia" -#: taextras.py:154 +#. TRANS: cast means data type conversion +#: taextras.py:159 msgid "CAST\n" msgstr "CAST\n" -#: taextras.py:155 +#: taextras.py:160 msgid "new name" msgstr "new name" -#: taextras.py:156 +#: taextras.py:161 msgid "original" msgstr "original" -#: taextras.py:157 +#: taextras.py:162 msgid "f(x)=" msgstr "f(x)=" -#: taextras.py:158 +#: taextras.py:163 msgid "name" msgstr "name" -#: taextras.py:159 +#. TRANS: cast means data type conversion +#: taextras.py:165 msgid "Cast a new block" msgstr "Cast a new block" -#: taextras.py:160 +#: taextras.py:166 #, python-format msgid "generic module %s" msgstr "generic module %s" -#: taextras.py:161 +#: taextras.py:167 +msgid "Butia IP" +msgstr "Butia IP" + +#: taextras.py:168 +msgid "change the ip of butia robot" +msgstr "change the IP of butia robot" + +#: taextras.py:169 #, python-format msgid "ERROR: The pin %s must be in OUTPUT mode." msgstr "ERROR: The pin %s must be in OUTPUT mode." -#: taextras.py:162 +#: taextras.py:170 #, python-format msgid "ERROR: The pin %s must be in INPUT mode." msgstr "ERROR: The pin %s must be in INPUT mode." -#: taextras.py:163 +#: taextras.py:171 #, python-format msgid "ERROR: Something wrong with function '%s'" msgstr "ERROR: Something wrong with function '%s'" -#: taextras.py:164 +#: taextras.py:172 #, python-format msgid "ERROR: cannot init GCONF client: %s" msgstr "ERROR: cannot init GCONF client: %s" -#: taextras.py:165 +#. TRANS: cast means data type conversion +#: taextras.py:174 msgid "ERROR: You must cast Sensor or Actuator: A, B or C" msgstr "ERROR: You must cast Sensor or Actuator: A, B or C" -#: taextras.py:166 +#: taextras.py:175 +#, python-format +msgid "ERROR: Invalid IP '%s'" +msgstr "ERROR: Invalid IP '%s'" + +#: taextras.py:176 msgid "Creating PyBot server" msgstr "Creating PyBot server" -#: taextras.py:167 +#: taextras.py:177 msgid "ERROR creating PyBot server" msgstr "ERROR creating PyBot server" -#: taextras.py:168 +#: taextras.py:178 msgid "PyBot is alive!" msgstr "PyBot is alive!" -#: taextras.py:169 +#: taextras.py:179 msgid "Ending butia polling" msgstr "Ending butia polling" -#: taextras.py:173 +#: taextras.py:183 msgid "Error importing Pygame. This plugin require Pygame 1.9" msgstr "Error importing Pygame. This plugin require Pygame 1.9" -#: taextras.py:174 +#: taextras.py:184 msgid "Error on initialization of the camera" msgstr "Error on initialization of the camera" -#: taextras.py:175 +#: taextras.py:185 msgid "No camera was found" msgstr "No camera was found" -#: taextras.py:176 +#: taextras.py:186 msgid "Error stopping camera" msgstr "Error stopping camera" -#: taextras.py:177 +#: taextras.py:187 msgid "Error starting camera" msgstr "Error starting camera" #. TRANS: The "mask" is used to restrict processing to a region in the image -#: taextras.py:179 +#: taextras.py:189 msgid "Error in get mask" msgstr "Error in get mask" -#: taextras.py:180 +#: taextras.py:190 +msgid "followme" +msgstr "followme" + +#: taextras.py:191 msgid "FollowMe" msgstr "FollowMe" -#: taextras.py:181 +#: taextras.py:192 msgid "refresh FollowMe" msgstr "refresh FollowMe" -#: taextras.py:182 +#: taextras.py:193 msgid "Search for a connected camera." msgstr "Search for a connected camera." #. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: the calibration is used to match an RGB color to a target -#: taextras.py:184 +#: taextras.py:195 msgid "calibration" msgstr "calibration" -#: taextras.py:185 +#: taextras.py:196 msgid "store a personalized calibration" msgstr "store a personalized calibration" -#: taextras.py:186 +#: taextras.py:197 msgid "return a personalized calibration" msgstr "return a personalized calibration" -#: taextras.py:187 +#: taextras.py:198 msgid "follow" msgstr "follow" -#: taextras.py:188 +#: taextras.py:199 msgid "follow a color or calibration" msgstr "follow a color or calibration" -#: taextras.py:189 plugins/camera_sensor/camera_sensor.py:80 +#: taextras.py:200 plugins/camera_sensor/camera_sensor.py:80 #: plugins/camera_sensor/camera_sensor.py:93 #: plugins/camera_sensor/camera_sensor.py:128 #: plugins/camera_sensor/camera_sensor.py:141 @@ -564,324 +597,360 @@ msgstr "follow a color or calibration" msgid "brightness" msgstr "brightness" -#: taextras.py:190 +#: taextras.py:201 msgid "set the camera brightness as a value between 0 to 255." msgstr "set the camera brightness as a value between 0 to 255." -#: taextras.py:191 +#: taextras.py:202 msgid "minimum pixels" msgstr "minimum pixels" -#: taextras.py:192 +#: taextras.py:203 msgid "set the minimal number of pixels to follow" msgstr "set the minimal number of pixels to follow" -#: taextras.py:193 +#: taextras.py:204 msgid "threshold" msgstr "threshold" #. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: RGB color space (red, green, blue) -#: taextras.py:195 +#: taextras.py:206 msgid "set a threshold for a RGB color" msgstr "set a threshold for a RGB color" -#: taextras.py:196 +#: taextras.py:207 msgid "camera mode" msgstr "camera mode" #. TRANS: RGB, YUV, and HSV are color spaces -#: taextras.py:198 +#: taextras.py:209 msgid "set the color mode of the camera: RGB; YUV or HSV" msgstr "set the color mode of the camera: RGB; YUV or HSV" -#: taextras.py:199 +#: taextras.py:210 msgid "get brightness" msgstr "get brightness" -#: taextras.py:200 +#: taextras.py:211 msgid "get the brightness of the ambient light" msgstr "get the brightness of the ambient light" -#: taextras.py:201 +#: taextras.py:212 msgid "average color" msgstr "average color" -#: taextras.py:202 +#: taextras.py:213 msgid "" -"if set to 0 then color averaging is off during calibration; for other values " +"if set to 0 then color averaging is off during calibration;for other values, " "it is on" msgstr "" -"if set to 0 then color averaging is off during calibration; for other values " +"if set to 0 then color averaging is off during calibration;for other values, " "it is on" -#: taextras.py:204 +#: taextras.py:215 msgid "x position" msgstr "x position" -#: taextras.py:205 +#: taextras.py:216 msgid "return x position" msgstr "return x position" -#: taextras.py:206 +#: taextras.py:217 msgid "y position" msgstr "y position" -#: taextras.py:207 +#: taextras.py:218 msgid "return y position" msgstr "return y position" -#: taextras.py:208 +#: taextras.py:219 msgid "pixels" msgstr "pixels" -#: taextras.py:209 +#: taextras.py:220 msgid "return the number of pixels of the biggest blob" msgstr "return the number of pixels of the biggest blob" #. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: RGB color space (red, green, blue) -#: taextras.py:211 +#: taextras.py:222 +msgid "RGB" +msgstr "RGB" + +#: taextras.py:223 msgid "set the color mode of the camera to RGB" msgstr "set the color mode of the camera to RGB" #. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: YUV color space (luminance, chrominance) -#: taextras.py:213 +#: taextras.py:225 +msgid "YUV" +msgstr "YUV" + +#: taextras.py:226 msgid "set the color mode of the camera to YUV" msgstr "set the color mode of the camera to YUV" #. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: HSV color space (hue, saturation, value) -#: taextras.py:215 +#: taextras.py:228 +msgid "HSV" +msgstr "HSV" + +#: taextras.py:229 msgid "set the color mode of the camera to HSV" msgstr "set the color mode of the camera to HSV" -#: taextras.py:216 +#: taextras.py:230 +msgid "get color" +msgstr "get color" + +#: taextras.py:231 +msgid "get the color of an object" +msgstr "get the color of an object" + +#: taextras.py:232 +msgid "color distance" +msgstr "color distance" + +#: taextras.py:233 +msgid "set the distance to identify a color" +msgstr "set the distance to identify a color" + +#: taextras.py:234 msgid "empty calibration" msgstr "empty calibration" -#: taextras.py:217 +#: taextras.py:235 msgid "error in string conversion" msgstr "error in string conversion" #. TRANS: Pattern detection is a plugin that allow detect signals #. with the camera -#: taextras.py:223 +#: taextras.py:241 msgid "Pattern detection" msgstr "Pattern detection" -#: taextras.py:224 +#: taextras.py:242 +msgid "pattern_detection" +msgstr "pattern_detection" + +#: taextras.py:243 msgid "Seeing signal" msgstr "Seeing signal" -#: taextras.py:225 +#: taextras.py:244 msgid "Returns True if the signal is in front of the camera" msgstr "Returns True if the signal is in front of the camera" -#: taextras.py:226 +#: taextras.py:245 msgid "Distance to signal" msgstr "Distance to signal" -#: taextras.py:227 +#: taextras.py:246 msgid "Returns the distance of the signal to the camera in millimeters" msgstr "Returns the distance of the signal to the camera in milimeters" #. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: SumBot is a robot programmed for "Sumo wrestling" -#: taextras.py:232 +#: taextras.py:251 msgid "SumBot" msgstr "SumBot" -#: taextras.py:233 +#: taextras.py:252 +msgid "sumtia" +msgstr "sumtia" + +#: taextras.py:253 msgid "speed SumBot" msgstr "speed SumBot" -#: taextras.py:234 +#: taextras.py:254 msgid "submit the speed to the SumBot" msgstr "submit the speed to the SumBot" -#: taextras.py:235 +#: taextras.py:255 msgid "set the default speed for the movement commands" msgstr "set the default speed for the movement commands" #. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: This string is shorthand for "move SumBot forward" -#: taextras.py:237 +#: taextras.py:257 msgid "forward SumBot" msgstr "forward SumBot" -#: taextras.py:238 +#: taextras.py:258 msgid "move SumBot forward" msgstr "move SumBot forward" #. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: This string is shorthand for "move SumBot backward" -#: taextras.py:240 +#: taextras.py:260 msgid "backward SumBot" msgstr "backward SumBot" -#: taextras.py:241 +#: taextras.py:261 msgid "move SumBot backward" msgstr "move SumBot backward" -#: taextras.py:242 +#: taextras.py:262 msgid "stop SumBot" msgstr "stop SumBot" -#: taextras.py:243 +#: taextras.py:263 msgid "stop the SumBot" msgstr "stop the SumBot" #. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: This string is shorthand for "turn SumBot left" -#: taextras.py:245 +#: taextras.py:265 msgid "left SumBot" msgstr "left SumBot" -#: taextras.py:246 +#: taextras.py:266 msgid "turn left the SumBot" msgstr "turn left the SumBot" #. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: This string is shorthand for "move SumBot right" -#: taextras.py:248 +#: taextras.py:268 msgid "right SumBot" msgstr "right SumBot" -#: taextras.py:249 +#: taextras.py:269 msgid "turn right the SumBot" msgstr "turn right the SumBot" #. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: The angle to the center is the angle SumBot must turn to #. face the center of the playing field -#: taextras.py:252 +#: taextras.py:272 msgid "angle to center" msgstr "angle to center" #. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: dohyo is the playing field -#: taextras.py:254 +#: taextras.py:274 msgid "get the angle to the center of the dohyo" msgstr "get the angle to the center of the dohyo" #. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: The angle to the center is the angle SumBot must turn to #. face the Enemy (opponent) -#: taextras.py:257 +#: taextras.py:277 msgid "angle to Enemy" msgstr "angle to Enemy" -#: taextras.py:258 +#: taextras.py:278 msgid "get the angle to the Enemy" msgstr "get the angle to the Enemy" #. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: This string is shorthand for "x coordinate of SumBot" -#: taextras.py:260 +#: taextras.py:280 msgid "x coor. SumBot" msgstr "x coor. SumBot" -#: taextras.py:261 +#: taextras.py:281 msgid "get the x coordinate of the SumBot" msgstr "get the x coordinate of the SumBot" #. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: This string is shorthand for "y coordinate of SumBot" -#: taextras.py:263 +#: taextras.py:283 msgid "y coor. SumBot" msgstr "y coor. SumBot" -#: taextras.py:264 +#: taextras.py:284 msgid "get the y coordinate of the SumBot" msgstr "get the y coordinate of the SumBot" #. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" -#: taextras.py:266 +#: taextras.py:286 msgid "x coor. Enemy" msgstr "x coor. Enemy" -#: taextras.py:267 +#: taextras.py:287 msgid "get the x coordinate of the Enemy" msgstr "get the x coordinate of the Enemy" #. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" -#: taextras.py:269 +#: taextras.py:289 msgid "y coor. Enemy" msgstr "y coor. Enemy" -#: taextras.py:270 +#: taextras.py:290 msgid "get the y coordinate of the Enemy" msgstr "get the y coordinate of the Enemy" #. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: This string is shorthand for "rotation of SumBot" -#: taextras.py:272 +#: taextras.py:292 msgid "rotation SumBot" msgstr "rotation SumBot" -#: taextras.py:273 +#: taextras.py:293 msgid "get the rotation of the Sumbot" msgstr "get the rotation of the Sumbot" #. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: This string is shorthand for "rotation of SumBot's enemy" -#: taextras.py:275 +#: taextras.py:295 msgid "rotation Enemy" msgstr "rotation Enemy" -#: taextras.py:276 +#: taextras.py:296 msgid "get the rotation of the Enemy" msgstr "get the rotation of the Enemy" -#: taextras.py:277 +#: taextras.py:297 msgid "distance to center" msgstr "distance to center" #. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: dohyo is the playing field -#: taextras.py:279 +#: taextras.py:299 msgid "get the distance to the center of the dohyo" msgstr "get the distance to the center of the dohyo" -#: taextras.py:280 +#: taextras.py:300 msgid "distance to Enemy" msgstr "distance to Enemy" -#: taextras.py:281 +#: taextras.py:301 msgid "get the distance to the Enemy" msgstr "get the distance to the Enemy" -#: taextras.py:282 +#: taextras.py:302 msgid "update information" msgstr "update information" -#: taextras.py:283 +#: taextras.py:303 msgid "update information from the server" msgstr "update information from the server" #. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: Please use similar terms to those used in the Physics Activity -#: taextras.py:288 +#: taextras.py:308 msgid "Palette of physics blocks" msgstr "Palette of physics blocks" -#: taextras.py:289 +#: taextras.py:309 msgid "start polygon" msgstr "start polygon" -#: taextras.py:290 +#: taextras.py:310 msgid "Begin defining a new polygon based on the current Turtle xy position." msgstr "Begin defining a new polygon based on the current Turtle xy position." -#: taextras.py:292 +#: taextras.py:312 msgid "add point" msgstr "add point" -#: taextras.py:293 +#: taextras.py:313 msgid "" "Add a new point to the current polygon based on the current Turtle xy " "position." @@ -889,88 +958,88 @@ msgstr "" "Add a new point to the current polygon based on the current Turtle xy " "position." -#: taextras.py:295 +#: taextras.py:315 msgid "end polygon" msgstr "end polygon" -#: taextras.py:296 +#: taextras.py:316 msgid "Define a new polygon." msgstr "Define a new polygon." -#: taextras.py:297 +#: taextras.py:317 msgid "end filled polygon" msgstr "end filled polygon" -#: taextras.py:298 +#: taextras.py:318 msgid "Not a simple polygon" msgstr "Not a simple polygon" -#: taextras.py:299 +#: taextras.py:319 msgid "Define a new filled polygon." msgstr "Define a new filled polygon." -#: taextras.py:300 +#: taextras.py:320 msgid "triangle" msgstr "triangle" #. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: base of a triangle -#: taextras.py:302 +#: taextras.py:322 msgid "base" msgstr "base" -#: taextras.py:303 taextras.py:309 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896 +#: taextras.py:323 taextras.py:329 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:934 msgid "height" msgstr "height" -#: taextras.py:304 +#: taextras.py:324 msgid "Add a triangle object to the project." msgstr "Add a triangle object to the project." -#: taextras.py:305 +#: taextras.py:325 msgid "circle" msgstr "circle" -#: taextras.py:306 +#: taextras.py:326 msgid "Add a circle object to the project." msgstr "Add a circle object to the project." -#: taextras.py:307 +#: taextras.py:327 msgid "rectangle" msgstr "rectangle" -#: taextras.py:308 plugins/turtle_blocks_extras/turtle_blocks_extras.py:872 +#: taextras.py:328 plugins/turtle_blocks_extras/turtle_blocks_extras.py:910 msgid "width" msgstr "width" -#: taextras.py:310 +#: taextras.py:330 msgid "Add a rectangle object to the project." msgstr "Add a rectangle object to the project." -#: taextras.py:311 +#: taextras.py:331 msgid "reset" msgstr "reset" -#: taextras.py:312 +#: taextras.py:332 msgid "Reset the project; clear the object list." msgstr "Reset the project; clear the object list." -#: taextras.py:313 +#: taextras.py:333 msgid "motor" msgstr "motor" #. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: torque as in engine torque -#: taextras.py:315 +#: taextras.py:335 msgid "torque" msgstr "torque" -#: taextras.py:316 +#: taextras.py:336 msgid "speed" msgstr "speed" -#: taextras.py:317 +#: taextras.py:337 msgid "" "Motor torque and speed range from 0 (off) to positive numbers; motor is " "placed on the most recent object created." @@ -978,23 +1047,23 @@ msgstr "" "Motor torque and speed range from 0 (off) to positive numbers; motor is " "placed on the most recent object created." -#: taextras.py:320 +#: taextras.py:340 msgid "Pin an object down so that it cannot fall." msgstr "Pin an object down so that it cannot fall." -#: taextras.py:321 +#: taextras.py:341 msgid "joint" msgstr "joint" -#: taextras.py:322 TurtleArt/tabasics.py:210 TurtleArt/tabasics.py:288 +#: taextras.py:342 TurtleArt/tabasics.py:212 TurtleArt/tabasics.py:290 msgid "x" msgstr "x" -#: taextras.py:323 TurtleArt/tabasics.py:210 TurtleArt/tabasics.py:288 +#: taextras.py:343 TurtleArt/tabasics.py:212 TurtleArt/tabasics.py:290 msgid "y" msgstr "y" -#: taextras.py:324 +#: taextras.py:344 msgid "" "Join two objects together (the most recent object created and the object at " "point x, y)." @@ -1002,39 +1071,39 @@ msgstr "" "Join two objects together (the most recent object created and the object at " "point x, y)." -#: taextras.py:326 +#: taextras.py:346 msgid "save as Physics activity" msgstr "save as Physics activity" -#: taextras.py:327 +#: taextras.py:347 msgid "Save the project to the Journal as a Physics activity." msgstr "Save the project to the Journal as a Physics activity." #. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: Here, gear means a toothed wheel, as in a clock-works -#: taextras.py:329 +#: taextras.py:349 msgid "gear" msgstr "gear" -#: taextras.py:330 +#: taextras.py:350 msgid "Add a gear object to the project." msgstr "Add a gear object to the project." -#: taextras.py:331 +#: taextras.py:351 msgid "density" msgstr "density" -#: taextras.py:332 +#: taextras.py:352 msgid "" "Set the density property for objects (density can be any positive number)." msgstr "" "Set the density property for objects (density can be any positive number)." -#: taextras.py:334 +#: taextras.py:354 msgid "friction" msgstr "friction" -#: taextras.py:335 +#: taextras.py:355 msgid "" "Set the friction property for objects (value from 0 to 1, where 0 turns " "friction off and 1 is strong friction)." @@ -1044,11 +1113,11 @@ msgstr "" #. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: bounciness is coefficient of restitution -#: taextras.py:338 +#: taextras.py:358 msgid "bounciness" msgstr "bounciness" -#: taextras.py:339 +#: taextras.py:359 msgid "" "Set the bounciness property for objects (a value from 0 to 1, where 0 means " "no bounce and 1 is very bouncy)." @@ -1058,11 +1127,11 @@ msgstr "" #. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: dynamic here means moving vs in a fixed position -#: taextras.py:342 +#: taextras.py:362 msgid "dynamic" msgstr "dynamic" -#: taextras.py:343 +#: taextras.py:363 msgid "" "If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." msgstr "" @@ -1070,27 +1139,27 @@ msgstr "" #. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: WeDo is a robotics product of the LEGO company -#: taextras.py:349 +#: taextras.py:369 msgid "Palette of WeDo blocks" msgstr "Palette of WeDo blocks" -#: taextras.py:350 +#: taextras.py:370 msgid "WeDo" msgstr "WeDo" -#: taextras.py:351 +#: taextras.py:371 msgid "set current WeDo device" msgstr "set current WeDo device" -#: taextras.py:352 +#: taextras.py:372 msgid "number of WeDo devices" msgstr "number of WeDo devices" -#: taextras.py:353 +#: taextras.py:373 msgid "tilt" msgstr "tilt" -#: taextras.py:354 +#: taextras.py:374 msgid "" "tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " "tilt left, 2 == tilt right)" @@ -1100,172 +1169,168 @@ msgstr "" #. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: This string is shorthand for "output of the distance sensor" -#: taextras.py:358 +#: taextras.py:378 msgid "distance sensor output" msgstr "distance sensor output" -#: taextras.py:359 +#: taextras.py:379 msgid "Motor A" msgstr "Motor A" -#: taextras.py:360 +#: taextras.py:380 msgid "returns the current value of Motor A" msgstr "returns the current value of Motor A" -#: taextras.py:361 +#: taextras.py:381 msgid "Motor B" msgstr "Motor B" -#: taextras.py:362 +#: taextras.py:382 msgid "returns the current value of Motor B" msgstr "returns the current value of Motor B" -#: taextras.py:363 +#: taextras.py:383 msgid "set the value for Motor A" msgstr "set the value for Motor A" -#: taextras.py:364 +#: taextras.py:384 msgid "set the value for Motor B" msgstr "set the value for Motor B" -#: taextras.py:365 +#: taextras.py:385 msgid "WeDo is unavailable" msgstr "WeDo is unavailable" #. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 -#: taextras.py:367 +#: taextras.py:387 #, python-format msgid "WeDo %d is unavailable; defaulting to 1" msgstr "WeDo %d is unavailable; defaulting to 1" #. TRANS: %(device)s and %(wedo_number)d are substitution strings; #. please leave untranslated -#: taextras.py:370 +#: taextras.py:390 #, python-format msgid "%(device)s is unavailable on WeDo %(wedo_number)d" msgstr "%(device)s is unavailable on WeDo %(wedo_number)d" #. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: Lego NXT is a robotics product of the LEGO company -#: taextras.py:375 +#: taextras.py:395 msgid "Palette of LEGO NXT blocks of motors" msgstr "Palette of LEGO NXT blocks of motors" -#: taextras.py:376 +#: taextras.py:396 msgid "Palette of LEGO NXT blocks of sensors" msgstr "Palette of LEGO NXT blocks of sensors" -#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: touch sensor (implemented as a button) -#: taextras.py:378 -msgid "touch" -msgstr "touch" - -#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: distance sensor (implemented using ultrasonics) -#: taextras.py:380 -msgid "ultrasonic" -msgstr "ultrasonic" - -#: taextras.py:381 TurtleArt/tabasics.py:313 TurtleArt/tabasics.py:326 -#: TurtleArt/tabasics.py:384 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1093 +#: taextras.py:399 TurtleArt/tabasics.py:317 TurtleArt/tabasics.py:330 +#: TurtleArt/tabasics.py:388 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1132 msgid "color" msgstr "color" -#: taextras.py:383 plugins/audio_sensors/audio_sensors.py:83 +#: taextras.py:401 plugins/audio_sensors/audio_sensors.py:83 #: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:206 msgid "sound" msgstr "sound" #. TRANS: The brick is the NXT controller -#: taextras.py:386 +#: taextras.py:404 msgid "Please check the connection with the brick" msgstr "Please check the connection with the brick" -#: taextras.py:387 +#: taextras.py:405 #, python-format msgid "Invalid port '%s'. Port must be: PORT A, B or C" msgstr "Invalid port '%s'. Port must be: PORT A, B or C" -#: taextras.py:388 +#: taextras.py:406 #, python-format msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" msgstr "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" -#: taextras.py:389 +#: taextras.py:407 msgid "The value of power must be between -127 to 127" msgstr "The value of power must be between -127 to 127" -#: taextras.py:390 +#: taextras.py:408 #, python-format msgid "The parameter must be a integer, not '%s'" msgstr "The parameter must be a integer, not '%s'" -#: taextras.py:391 +#: taextras.py:409 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:392 +#: taextras.py:410 #, python-format msgid "NXT found %s bricks" msgstr "NXT found %s bricks" -#: taextras.py:393 +#: taextras.py:411 msgid "NXT not found" msgstr "NXT not found" -#: taextras.py:394 +#: taextras.py:412 #, python-format msgid "Brick number %s was not found" msgstr "Brick number %s was not found" -#: taextras.py:395 +#: taextras.py:413 +msgid "nxt-motors" +msgstr "nxt-motors" + +#: taextras.py:414 msgid "refresh NXT" msgstr "refresh NXT" -#: taextras.py:396 +#: taextras.py:415 msgid "Search for a connected NXT brick." msgstr "Search for a connected NXT brick." -#: taextras.py:397 +#: taextras.py:416 msgid "NXT" msgstr "NXT" -#: taextras.py:398 +#: taextras.py:417 msgid "set current NXT device" msgstr "set current NXT device" -#: taextras.py:399 +#: taextras.py:418 +msgid "number of NXTs" +msgstr "number of NXTs" + +#: taextras.py:419 msgid "number of NXT devices" msgstr "number of NXT devices" -#: taextras.py:400 +#: taextras.py:420 msgid "brick name" msgstr "brick name" -#: taextras.py:401 +#: taextras.py:421 msgid "Get the name of a brick." msgstr "Get the name of a brick." -#: taextras.py:402 +#: taextras.py:422 msgid "play tone" msgstr "play tone" -#: taextras.py:403 +#: taextras.py:423 msgid "frequency" msgstr "frequency" -#: taextras.py:404 plugins/turtle_blocks_extras/turtle_blocks_extras.py:425 +#: taextras.py:424 plugins/turtle_blocks_extras/turtle_blocks_extras.py:429 msgid "time" msgstr "time" -#: taextras.py:405 +#: taextras.py:425 msgid "Play a tone at frequency for time." msgstr "Play a tone at frequency for time." #. TRANS: turn is the action -#: taextras.py:407 +#: taextras.py:427 msgid "" "turn motor\n" "\n" @@ -1273,25 +1338,25 @@ msgstr "" "turn motor\n" "\n" -#: taextras.py:408 +#: taextras.py:428 msgid "port" msgstr "port" -#: taextras.py:409 -msgid "power" -msgstr "power" - #. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: rotations is quantity of turns -#: taextras.py:411 +#: taextras.py:430 msgid "rotations" msgstr "rotations" -#: taextras.py:412 +#: taextras.py:431 +msgid "power" +msgstr "power" + +#: taextras.py:432 msgid "turn a motor" msgstr "turn a motor" -#: taextras.py:413 +#: taextras.py:434 msgid "" "synchronize\n" "\n" @@ -1301,39 +1366,39 @@ msgstr "" "\n" "motors" -#: taextras.py:414 +#: taextras.py:435 msgid "steering" msgstr "steering" -#: taextras.py:415 +#: taextras.py:436 msgid "synchronize two motors connected in PORT B and PORT C" msgstr "synchronize two motors connected in PORT B and PORT C" -#: taextras.py:416 +#: taextras.py:437 msgid "PORT A" msgstr "PORT A" -#: taextras.py:417 +#: taextras.py:438 msgid "PORT A of the brick" msgstr "PORT A of the brick" -#: taextras.py:418 +#: taextras.py:439 msgid "PORT B" msgstr "PORT B" -#: taextras.py:419 +#: taextras.py:440 msgid "PORT B of the brick" msgstr "PORT B of the brick" -#: taextras.py:420 +#: taextras.py:441 msgid "PORT C" msgstr "PORT C" -#: taextras.py:421 +#: taextras.py:442 msgid "PORT C of the brick" msgstr "PORT C of the brick" -#: taextras.py:422 +#: taextras.py:443 msgid "" "synchronize\n" "motors" @@ -1341,225 +1406,233 @@ msgstr "" "synchronize\n" "motors" -#: taextras.py:423 +#: taextras.py:444 msgid "start motor" msgstr "start motor" -#: taextras.py:424 +#: taextras.py:445 msgid "Run a motor forever." msgstr "Run a motor forever." -#: taextras.py:425 +#: taextras.py:446 msgid "brake motor" msgstr "brake motor" -#: taextras.py:426 +#: taextras.py:447 msgid "Stop a specified motor." msgstr "Stop a specified motor." #. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: reset is used to reset the counter associated with the motor -#: taextras.py:428 +#: taextras.py:449 msgid "reset motor" msgstr "reset motor" -#: taextras.py:429 +#: taextras.py:450 msgid "Reset the motor counter." msgstr "Reset the motor counter." -#: taextras.py:430 +#: taextras.py:451 msgid "motor position" msgstr "motor position" -#: taextras.py:431 +#: taextras.py:452 msgid "Get the motor position." msgstr "Get the motor position." -#: taextras.py:432 +#: taextras.py:453 +msgid "nxt-sensors" +msgstr "nxt-sensors" + +#: taextras.py:454 msgid "PORT 1" msgstr "PORT 1" -#: taextras.py:433 +#: taextras.py:455 msgid "PORT 1 of the brick" msgstr "PORT 1 of the brick" -#: taextras.py:434 +#: taextras.py:456 msgid "read" msgstr "read" -#: taextras.py:435 +#: taextras.py:457 plugins/turtle_blocks_extras/turtle_blocks_extras.py:309 msgid "sensor" msgstr "sensor" -#: taextras.py:436 +#: taextras.py:458 msgid "Read sensor output." msgstr "Read sensor output." -#: taextras.py:437 +#: taextras.py:459 msgid "PORT 2" msgstr "PORT 2" -#: taextras.py:438 +#: taextras.py:460 msgid "PORT 2 of the brick" msgstr "PORT 2 of the brick" -#: taextras.py:439 +#: taextras.py:461 msgid "light sensor" msgstr "light sensor" -#: taextras.py:440 +#: taextras.py:462 msgid "gray sensor" msgstr "gray sensor" -#: taextras.py:441 +#: taextras.py:463 msgid "PORT 3" msgstr "PORT 3" -#: taextras.py:442 +#: taextras.py:464 msgid "PORT 3 of the brick" msgstr "PORT 3 of the brick" -#: taextras.py:443 -msgid "touch sensor" -msgstr "touch sensor" +#: taextras.py:465 +msgid "button sensor" +msgstr "button sensor" -#: taextras.py:444 +#: taextras.py:466 msgid "distance sensor" msgstr "distance sensor" -#: taextras.py:445 +#: taextras.py:467 msgid "PORT 4" msgstr "PORT 4" -#: taextras.py:446 +#: taextras.py:468 msgid "PORT 4 of the brick" msgstr "PORT 4 of the brick" -#: taextras.py:447 +#: taextras.py:469 msgid "sound sensor" msgstr "sound sensor" -#: taextras.py:448 +#: taextras.py:470 msgid "color sensor" msgstr "color sensor" #. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: set light is used to set the light level associated with #. the color sensor (which can emit light as well as sense it) -#: taextras.py:451 +#: taextras.py:473 msgid "set light" msgstr "set light" -#: taextras.py:452 +#: taextras.py:474 msgid "Set color sensor light." msgstr "Set color sensor light." #. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: the battery level is the charge level of the brick -#: taextras.py:454 +#: taextras.py:476 msgid "battery level" msgstr "battery level" -#: taextras.py:455 +#: taextras.py:477 msgid "Get the battery level of the brick in millivolts" msgstr "Get the battery level of the brick in millivolts" #. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: Arduino plugin to control an Arduino board -#: taextras.py:460 +#: taextras.py:482 msgid "Palette of Arduino blocks" msgstr "Palette of Arduino blocks" #. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: PWM is pulse-width modulation -#: taextras.py:466 +#: taextras.py:488 msgid "PWM" msgstr "PWM" -#: taextras.py:467 +#: taextras.py:489 msgid "SERVO" msgstr "SERVO" -#: taextras.py:468 +#: taextras.py:490 msgid "ERROR: Check the Arduino and the number of port." msgstr "ERROR: Check the Arduino and the number of port." -#: taextras.py:469 +#: taextras.py:491 msgid "ERROR: Value must be a number from 0 to 255." msgstr "ERROR: Value must be a number from 0 to 255." -#: taextras.py:470 +#: taextras.py:492 msgid "ERROR: Value must be either HIGH or LOW, 0 or 1" msgstr "ERROR: Value must be either HIGH or LOW, 0 or 1" -#: taextras.py:471 +#: taextras.py:493 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:472 +#: taextras.py:494 msgid "ERROR: The value must be an integer." msgstr "ERROR: The value must be an integer." -#: taextras.py:473 +#: taextras.py:495 msgid "ERROR: The pin must be an integer." msgstr "ERROR: The pin must be an integer." -#: taextras.py:474 +#: taextras.py:496 +msgid "arduino" +msgstr "arduino" + +#: taextras.py:497 msgid "refresh Arduino" msgstr "refresh Arduino" -#: taextras.py:475 +#: taextras.py:498 msgid "Search for connected Arduinos." msgstr "Search for connected Arduinos." -#: taextras.py:476 +#: taextras.py:499 msgid "Arduino" msgstr "Arduino" -#: taextras.py:477 +#: taextras.py:500 msgid "set current Arduino board" msgstr "set current Arduino board" -#: taextras.py:478 +#: taextras.py:501 msgid "number of Arduinos" msgstr "number of Arduinos" -#: taextras.py:479 +#: taextras.py:502 msgid "number of Arduino boards" msgstr "number of Arduino boards" -#: taextras.py:480 +#: taextras.py:503 msgid "Arduino name" msgstr "Arduino name" -#: taextras.py:481 +#: taextras.py:504 msgid "Get the name of an Arduino." msgstr "Get the name of an Arduino." #. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) #. in which an I/O pin is being used. -#: taextras.py:484 +#: taextras.py:507 msgid "pin mode" msgstr "pin mode" -#: taextras.py:487 +#: taextras.py:510 msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." msgstr "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." -#: taextras.py:488 +#: taextras.py:511 msgid "analog write" msgstr "analog write" -#: taextras.py:490 +#: taextras.py:513 msgid "Write analog value in specified port." msgstr "Write analog value in specified port." -#: taextras.py:491 +#: taextras.py:514 msgid "analog read" msgstr "analog read" -#: taextras.py:492 +#: taextras.py:515 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." @@ -1567,102 +1640,102 @@ 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:494 +#: taextras.py:517 msgid "digital write" msgstr "digital write" -#: taextras.py:495 +#: taextras.py:518 msgid "Write digital value to specified port." msgstr "Write digital value to specified port." -#: taextras.py:496 +#: taextras.py:519 msgid "digital read" msgstr "digital read" -#: taextras.py:497 +#: taextras.py:520 msgid "Read value from digital port." msgstr "Read value from digital port." -#: taextras.py:498 +#: taextras.py:521 msgid "Set HIGH value for digital port." msgstr "Set HIGH value for digital port." -#: taextras.py:499 +#: taextras.py:522 msgid "Configure Arduino port for digital input." msgstr "Configure Arduino port for digital input." -#: taextras.py:500 +#: taextras.py:523 msgid "Configure Arduino port to drive a servo." msgstr "Configure Arduino port to drive a servo." -#: taextras.py:502 +#: taextras.py:525 msgid "Configure Arduino port for digital output." msgstr "Configure Arduino port for digital output." -#: taextras.py:503 +#: taextras.py:526 msgid "Configure Arduino port for PWM (pulse-width modulation)." msgstr "Configure Arduino port for PWM (pulse-width modulation)." -#: taextras.py:504 +#: taextras.py:527 #, python-format msgid "Not found Arduino %s" msgstr "Not found Arduino %s" -#: taextras.py:505 +#: taextras.py:528 msgid "The pin must be an integer" msgstr "The pin must be an integer" -#: taextras.py:506 +#: taextras.py:529 msgid "The device must be an integer" msgstr "The device must be an integer" #. TRANS: plugin to control an ExpEyes device -#: taextras.py:511 +#: taextras.py:534 msgid "Palette of Expeyes blocks" msgstr "Palette of Expeyes blocks" #. TRANS: Programmable voltage output -#: taextras.py:513 +#: taextras.py:536 msgid "set PVS" msgstr "set PVS" -#: taextras.py:514 +#: taextras.py:537 msgid "set programmable voltage output" msgstr "set programmable voltage output" #. TRANS: Square wave 1 voltage output -#: taextras.py:516 +#: taextras.py:539 msgid "set SQR1 voltage" msgstr "set SQR1 voltage" -#: taextras.py:517 +#: taextras.py:540 msgid "set square wave 1 voltage output" msgstr "set square wave 1 voltage output" #. TRANS: Square wave 2 voltage output -#: taextras.py:519 +#: taextras.py:542 msgid "set SQR2 voltage" msgstr "set SQR2 voltage" -#: taextras.py:520 +#: taextras.py:543 msgid "set square wave 2 voltage output" msgstr "set square wave 2 voltage output" #. TRANS: Digital output level -#: taextras.py:522 +#: taextras.py:545 msgid "set OD1" msgstr "set OD1" -#: taextras.py:523 +#: taextras.py:546 msgid "set digital output level (OD1) low (0) or high (1)" msgstr "set digital output level (OD1) low (0) or high (1)" #. TRANS: Input 1 voltage level -#: taextras.py:525 +#: taextras.py:548 msgid "IN1 level" msgstr "IN1 level" -#: taextras.py:526 +#: taextras.py:549 msgid "" "returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " "volts" @@ -1671,11 +1744,11 @@ msgstr "" "volts" #. TRANS: Input 2 voltage level -#: taextras.py:529 +#: taextras.py:552 msgid "IN2 level" msgstr "IN2 level" -#: taextras.py:530 +#: taextras.py:553 msgid "" "returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " "volts" @@ -1684,11 +1757,11 @@ msgstr "" "volts" #. TRANS: Resistive sensor voltage level -#: taextras.py:533 +#: taextras.py:556 msgid "SEN level" msgstr "SEN level" -#: taextras.py:534 +#: taextras.py:557 msgid "" "returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " "voltage level <= 2.5 volts" @@ -1696,106 +1769,106 @@ msgstr "" "returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " "voltage level <= 2.5 volts" -#: taextras.py:536 +#: taextras.py:559 msgid "capture" msgstr "capture" -#: taextras.py:537 +#: taextras.py:560 msgid "input" msgstr "input" -#: taextras.py:538 +#: taextras.py:561 msgid "samples" msgstr "samples" -#: taextras.py:539 +#: taextras.py:562 msgid "interval" msgstr "interval" #. TRANS: MS is microseconds -#: taextras.py:541 +#: taextras.py:564 msgid "" "capture multiple samples from input at interval (MS); results pushed to FIFO" msgstr "" "capture multiple samples from input at interval (MS); results pushed to FIFO" #. TRANS: Analog input 1 voltage level -#: taextras.py:544 +#: taextras.py:567 msgid "A1" msgstr "A1" -#: taextras.py:545 +#: taextras.py:568 msgid "read analog input 1 voltage" msgstr "read analog input 1 voltage" #. TRANS: Analog input 2 voltage level -#: taextras.py:547 +#: taextras.py:570 msgid "A2" msgstr "A2" -#: taextras.py:548 +#: taextras.py:571 msgid "read analog input 2 voltage" msgstr "read analog input 2 voltage" #. TRANS: Read input 1 voltage -#: taextras.py:550 +#: taextras.py:573 msgid "IN1" msgstr "IN1" -#: taextras.py:551 +#: taextras.py:574 msgid "read input 1 voltage" msgstr "read input 1 voltage" #. TRANS: Read input 2 voltage -#: taextras.py:553 +#: taextras.py:576 msgid "IN2" msgstr "IN2" -#: taextras.py:554 +#: taextras.py:577 msgid "read input 2 voltage" msgstr "read input 2 voltage" #. TRANS: Read analog sensor input voltage -#: taextras.py:556 +#: taextras.py:579 msgid "SEN" msgstr "SEN" -#: taextras.py:557 +#: taextras.py:580 msgid "read analog sensor input voltage" msgstr "read analog sensor input voltage" #. TRANS: Read square wave 1 input voltage -#: taextras.py:559 +#: taextras.py:582 msgid "SQR1" msgstr "SQR1" -#: taextras.py:560 +#: taextras.py:583 msgid "read square wave 1 voltage" msgstr "read square wave 1 voltage" #. TRANS: Read square wave 2 input voltage -#: taextras.py:562 +#: taextras.py:585 msgid "SQR2" msgstr "SQR2" -#: taextras.py:563 +#: taextras.py:586 msgid "read square wave 2 voltage" msgstr "read square wave 2 voltage" #. TRANS: Read programmable voltage -#: taextras.py:565 +#: taextras.py:588 msgid "PVS" msgstr "PVS" -#: taextras.py:566 +#: taextras.py:589 msgid "read programmable voltage" msgstr "read programmable voltage" -#: taextras.py:567 +#: taextras.py:590 msgid "Expeyes device not found" msgstr "Expeyes device not found" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:279 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281 msgid "resume playing video or audio" msgstr "resume playing video or audio" @@ -1810,15 +1883,15 @@ msgstr "Title" msgid "Average RGB color from camera is pushed to the stack" msgstr "Average RGB color from camera is pushed to the stack" -#: TurtleArt/tabasics.py:513 +#: TurtleArt/tabasics.py:519 msgid "yellow" msgstr "yellow" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:664 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:670 msgid "displays polar coordinates" msgstr "displays polar coordinates" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:472 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:478 msgid "emptys FILO (first-in-last-out heap)" msgstr "emptys FILO (first-in-last-out heap)" @@ -1835,39 +1908,39 @@ msgstr "camera output" msgid "push acceleration in x, y, z to heap" msgstr "push acceleration in x, y, z to heap" -#: TurtleArt/tabasics.py:827 +#: TurtleArt/tabasics.py:837 msgid "if-then operator that uses boolean operators from Numbers palette" msgstr "if-then operator that uses boolean operators from Numbers palette" -#: TurtleArt/tabasics.py:858 +#: TurtleArt/tabasics.py:868 msgid "jogs stack right" msgstr "jogs stack right" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:133 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:135 msgid "Sugar Journal media object" msgstr "Sugar Journal media object" -#: TurtleArt/tabasics.py:967 +#: TurtleArt/tabasics.py:979 msgid "box 2" msgstr "box 2" -#: TurtleArt/tabasics.py:957 +#: TurtleArt/tabasics.py:969 msgid "box 1" msgstr "box 1" -#: TurtleArtActivity.py:754 TurtleArtActivity.py:1039 turtleblocks.py:430 +#: TurtleArtActivity.py:779 TurtleArtActivity.py:1064 turtleblocks.py:453 msgid "Step" msgstr "Step" -#: TurtleArt/tabasics.py:636 +#: TurtleArt/tabasics.py:644 msgid "multiplies two numeric inputs" msgstr "multiplies two numeric inputs" -#: turtleblocks.py:423 +#: turtleblocks.py:446 msgid "Show/hide blocks" msgstr "Show/hide blocks" -#: TurtleArtActivity.py:341 TurtleArtActivity.py:1029 turtleblocks.py:421 +#: TurtleArtActivity.py:350 TurtleArtActivity.py:1054 turtleblocks.py:444 msgid "Hide palette" msgstr "Hide palette" @@ -1879,11 +1952,11 @@ msgstr "Buddies" msgid "My Turtle Art session" msgstr "My Turtle Art session" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:157 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:159 msgid "Sugar Journal video object" msgstr "Sugar Journal video object" -#: TurtleArt/tabasics.py:516 +#: TurtleArt/tabasics.py:522 msgid "cyan" msgstr "cyan" @@ -1897,50 +1970,50 @@ msgstr "" "A Logo-inspired turtle that draws colorful pictures with snap-together " "visual programming blocks" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:921 msgid "xcor of right of screen" msgstr "xcor of right of screen" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:436 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:442 msgid "Palette of extra options" msgstr "Palette of extra options" -#: TurtleArtActivity.py:702 TurtleArtActivity.py:719 TurtleArtActivity.py:758 -#: TurtleArtActivity.py:974 +#: TurtleArtActivity.py:727 TurtleArtActivity.py:744 TurtleArtActivity.py:783 +#: TurtleArtActivity.py:999 msgid "Load example" msgstr "Load example" -#: TurtleArt/tabasics.py:1060 +#: TurtleArt/tabasics.py:1074 msgid "move all blocks to trash" msgstr "move all blocks to trash" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:802 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840 msgid "list" msgstr "list" -#: turtleblocks.py:299 +#: turtleblocks.py:321 #, python-format msgid "Configuration directory not writable: %s" msgstr "Configuration directory not writable: %s" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:277 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:279 msgid "media resume" msgstr "media resume" -#: TurtleArt/tabasics.py:268 TurtleArt/tawindow.py:4248 +#: TurtleArt/tabasics.py:270 TurtleArt/tawindow.py:4302 msgid "heading" msgstr "heading" -#: TurtleArtActivity.py:951 +#: TurtleArtActivity.py:976 msgid "Sharing blocks disabled" msgstr "Sharing blocks disabled" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:239 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:241 msgid "saves turtle graphics as an SVG file in the Sugar Journal" msgstr "saves turtle graphics as an SVG file in the Sugar Journal" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:190 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:204 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:192 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:206 msgid "draws text or show media from the Journal" msgstr "draws text or show media from the Journal" @@ -1948,53 +2021,53 @@ msgstr "draws text or show media from the Journal" msgid "RFID" msgstr "RFID" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:155 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:157 msgid "video" msgstr "video" -#: TurtleArt/tabasics.py:517 +#: TurtleArt/tabasics.py:523 msgid "blue" msgstr "blue" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:656 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662 msgid "displays Cartesian coordinates" msgstr "displays Cartesian coordinates" -#: turtleblocks.py:260 +#: turtleblocks.py:282 msgid "No option action:" msgstr "No option action:" -#: TurtleArt/tabasics.py:866 +#: TurtleArt/tabasics.py:876 msgid "jogs stack down" msgstr "jogs stack down" -#: TurtleArt/tabasics.py:672 +#: TurtleArt/tabasics.py:680 msgid "modular (remainder) operator" msgstr "modular (remainder) operator" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:951 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:989 msgid "bottom y" msgstr "bottom y" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:236 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 msgid "save SVG" msgstr "save SVG" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:613 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:630 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:647 msgid "runs code found in the tamyblock.py module found in the Journal" msgstr "runs code found in the tamyblock.py module found in the Journal" -#: TurtleArt/tabasics.py:431 +#: TurtleArt/tabasics.py:435 msgid "pen down" msgstr "pen down" -#: TurtleArt/tabasics.py:789 +#: TurtleArt/tabasics.py:799 msgid "wait" msgstr "wait" -#: TurtleArt/tabasics.py:976 TurtleArt/tabasics.py:992 +#: TurtleArt/tabasics.py:988 TurtleArt/tabasics.py:1004 msgid "box" msgstr "box" @@ -2002,19 +2075,19 @@ msgstr "box" msgid "Failed to upload!" msgstr "Failed to upload!" -#: TurtleArt/tawindow.py:1156 TurtleArt/tawindow.py:1763 +#: TurtleArt/tawindow.py:1196 TurtleArt/tawindow.py:1811 msgid "shift" msgstr "shift" -#: TurtleArt/tabasics.py:922 TurtleArt/tawindow.py:4527 +#: TurtleArt/tabasics.py:934 TurtleArt/tawindow.py:4589 msgid "invokes named action stack" msgstr "invokes named action stack" -#: TurtleArt/tabasics.py:906 TurtleArt/tabasics.py:909 -#: TurtleArt/tabasics.py:917 TurtleArt/tabasics.py:921 -#: TurtleArt/tawindow.py:1449 TurtleArt/tawindow.py:1546 -#: TurtleArt/tawindow.py:1559 TurtleArt/tawindow.py:2178 -#: TurtleArt/tawindow.py:4513 +#: TurtleArt/tabasics.py:918 TurtleArt/tabasics.py:921 +#: TurtleArt/tabasics.py:929 TurtleArt/tabasics.py:933 +#: TurtleArt/tawindow.py:1496 TurtleArt/tawindow.py:1594 +#: TurtleArt/tawindow.py:1607 TurtleArt/tawindow.py:2227 +#: TurtleArt/tawindow.py:4575 msgid "action" msgstr "action" @@ -2023,20 +2096,20 @@ msgid "do-until-True operator that uses boolean operators from Numbers palette" msgstr "" "do-until-True operator that uses boolean operators from Numbers palette" -#: turtleblocks.py:91 +#: turtleblocks.py:94 msgid "usage is" msgstr "usage is" -#: TurtleArt/tabasics.py:970 +#: TurtleArt/tabasics.py:982 msgid "Variable 2 (numeric value)" msgstr "Variable 2 (numeric value)" -#: TurtleArt/tabasics.py:645 +#: TurtleArt/tabasics.py:653 msgid "divide" msgstr "divide" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:227 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:229 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:240 msgid "picture name" msgstr "picture name" @@ -2045,32 +2118,32 @@ msgstr "picture name" msgid "while" msgstr "while" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:913 msgid "the canvas width" msgstr "the canvas width" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:498 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:514 msgid "empty heap?" msgstr "empty heap?" -#: TurtleArt/tabasics.py:998 TurtleArt/tawindow.py:4556 +#: TurtleArt/tabasics.py:1010 TurtleArt/tawindow.py:4618 msgid "named variable (numeric value)" msgstr "named variable (numeric value)" -#: TurtleArt/tawindow.py:1117 TurtleArt/tawindow.py:1742 +#: TurtleArt/tawindow.py:1157 TurtleArt/tawindow.py:1790 msgid "next" msgstr "next" -#: TurtleArt/tabasics.py:825 +#: TurtleArt/tabasics.py:835 msgid "if then" msgstr "if then" -#: TurtleArt/tabasics.py:453 +#: TurtleArt/tabasics.py:457 msgid "set pen size" msgstr "set pen size" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:821 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859 msgid "presentation template: select Journal object (no description)" msgstr "presentation template: select Journal object (no description)" @@ -2079,15 +2152,15 @@ msgstr "presentation template: select Journal object (no description)" msgid "until" msgstr "until" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:265 msgid "media stop" msgstr "media stop" -#: TurtleArtActivity.py:326 turtleblocks.py:405 +#: TurtleArtActivity.py:334 turtleblocks.py:428 msgid "Turn on hover help" msgstr "Turn on hover help" -#: TurtleArt/tabasics.py:1050 +#: TurtleArt/tabasics.py:1064 msgid "permanently deletes items in trash" msgstr "permanently deletes items in trash" @@ -2100,11 +2173,11 @@ msgstr "" "#-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-#\n" "U-turn" -#: TurtleArt/tabasics.py:1008 +#: TurtleArt/tabasics.py:1020 msgid "top of Action 1 stack" msgstr "top of Action 1 stack" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571 msgid "" "a programmable block: used to add advanced single-variable math equations, e." "g., sin(x)" @@ -2112,30 +2185,30 @@ msgstr "" "a programmable block: used to add advanced single-variable math equations, e." "g., sin(x)" -#: TurtleArt/tabasics.py:784 +#: TurtleArt/tabasics.py:794 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:91 msgid "Palette of flow operators" msgstr "Palette of flow operators" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:751 msgid "top of a collapsed stack" msgstr "top of a collapsed stack" -#: TurtleArt/tabasics.py:840 TurtleArt/tabasics.py:848 +#: TurtleArt/tabasics.py:850 TurtleArt/tabasics.py:858 msgid "if-then-else operator that uses boolean operators from Numbers palette" msgstr "if-then-else operator that uses boolean operators from Numbers palette" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:351 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355 msgid "returns mouse y coordinate" msgstr "returns mouse y coordinate" -#: TurtleArt/tabasics.py:398 +#: TurtleArt/tabasics.py:402 msgid "holds current pen shade" msgstr "holds current pen shade" #. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: pitch, duration, amplitude -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:296 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:298 msgid "sinewave" msgstr "sinewave" @@ -2143,65 +2216,65 @@ msgstr "sinewave" msgid "Login failed" msgstr "Login failed" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:924 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:962 msgid "left x" msgstr "left x" # -#: TurtleArt/tabasics.py:226 +#: TurtleArt/tabasics.py:228 msgid "set heading" msgstr "seth" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:411 msgid "RGB color under the turtle is pushed to the stack" msgstr "RGB color under the turtle is pushed to the stack" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:814 msgid "declutters canvas by hiding blocks" msgstr "declutters canvas by hiding blocks" -#: TurtleArtActivity.py:1039 +#: TurtleArtActivity.py:1064 msgid "w" msgstr "w" -#: TurtleArtActivity.py:1037 +#: TurtleArtActivity.py:1062 msgid "r" msgstr "r" -#: TurtleArtActivity.py:1042 +#: TurtleArtActivity.py:1067 msgid "s" msgstr "s" -#: TurtleArtActivity.py:1030 +#: TurtleArtActivity.py:1055 msgid "p" msgstr "p" -#: TurtleArtActivity.py:1035 +#: TurtleArtActivity.py:1060 msgid "e" msgstr "e" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:551 msgid "Python chr operator" msgstr "Python chr operator" -#: TurtleArt/tabasics.py:857 +#: TurtleArt/tabasics.py:867 msgid "horizontal space" msgstr "horizontal space" -#: TurtleArtActivity.py:669 TurtleArtActivity.py:826 +#: TurtleArtActivity.py:690 TurtleArtActivity.py:851 msgid "Metric coordinates" msgstr "Metric coordinates" -#: TurtleArt/tabasics.py:902 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181 +#: TurtleArt/tabasics.py:914 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:183 msgid "string value" msgstr "string value" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:167 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:169 msgid "description" msgstr "description" -#: TurtleArt/talogo.py:572 +#: TurtleArt/talogo.py:573 msgid "I don't know how to" msgstr "I don't know how to" @@ -2209,20 +2282,20 @@ msgstr "I don't know how to" msgid "Username:" msgstr "Username:" -#: TurtleArt/tabasics.py:470 +#: TurtleArt/tabasics.py:474 msgid "starts filled polygon (used with end fill block)" msgstr "starts filled polygon (used with end fill block)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:835 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 msgid "presentation template: select four Journal objects" msgstr "presentation template: select four Journal objects" -#: TurtleArtActivity.py:608 TurtleArtActivity.py:637 TurtleArtActivity.py:750 -#: TurtleArtActivity.py:820 turtleblocks.py:407 +#: TurtleArtActivity.py:630 TurtleArtActivity.py:658 TurtleArtActivity.py:775 +#: TurtleArtActivity.py:845 turtleblocks.py:430 msgid "View" msgstr "View" -#: TurtleArt/tabasics.py:374 +#: TurtleArt/tabasics.py:378 msgid "sets gray level of the line drawn by the turtle" msgstr "sets gray level of the line drawn by the turtle" @@ -2230,68 +2303,68 @@ msgstr "sets gray level of the line drawn by the turtle" msgid "Password:" msgstr "Password:" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:415 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:419 msgid "turtle sees" msgstr "turtle sees" -#: TurtleArt/tabasics.py:872 +#: TurtleArt/tabasics.py:882 msgid "stop action" msgstr "stop action" -#: TurtleArt/tabasics.py:515 +#: TurtleArt/tabasics.py:521 msgid "green" msgstr "green" -#: TurtleArt/tabasics.py:313 TurtleArt/tabasics.py:327 -#: TurtleArt/tabasics.py:397 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1089 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1094 +#: TurtleArt/tabasics.py:317 TurtleArt/tabasics.py:331 +#: TurtleArt/tabasics.py:401 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1128 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1133 msgid "shade" msgstr "shade" -#: TurtleArt/tabasics.py:317 TurtleArt/tabasics.py:331 +#: TurtleArt/tabasics.py:321 TurtleArt/tabasics.py:335 msgid "fills the background with (color, shade)" msgstr "fills the background with (color, shade)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:227 msgid "save picture" msgstr "save picture" #: plugins/audio_sensors/audio_sensors.py:119 #: plugins/audio_sensors/audio_sensors.py:127 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:296 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:298 msgid "pitch" msgstr "pitch" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:323 msgid "returns 1 if mouse button is pressed" msgstr "returns 1 if mouse button is pressed" -#: TurtleArtActivity.py:513 TurtleArtActivity.py:672 TurtleArtActivity.py:828 +#: TurtleArtActivity.py:527 TurtleArtActivity.py:693 TurtleArtActivity.py:853 msgid "Rescale coordinates up" msgstr "Rescale coordinates up" -#: TurtleArt/tabasics.py:419 +#: TurtleArt/tabasics.py:423 msgid "pen up" msgstr "pen up" -#: TurtleArt/tabasics.py:511 +#: TurtleArt/tabasics.py:517 msgid "orange" msgstr "orange" -#: TurtleArt/tabasics.py:793 +#: TurtleArt/tabasics.py:803 msgid "pauses program execution a specified number of seconds" msgstr "pauses program execution a specified number of seconds" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:446 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:452 msgid "pushes value onto FILO (first-in last-out heap)" msgstr "pushes value onto FILO (first-in last-out heap)" -#: TurtleArt/tabasics.py:1059 +#: TurtleArt/tabasics.py:1073 msgid "clear all" msgstr "clear all" -#: TurtleArt/tabasics.py:822 TurtleArt/tabasics.py:835 +#: TurtleArt/tabasics.py:832 TurtleArt/tabasics.py:845 msgid "then" msgstr "then" @@ -2299,44 +2372,45 @@ msgstr "then" msgid "Register" msgstr "Register" -#: TurtleArt/tabasics.py:751 +#: TurtleArt/tabasics.py:759 msgid "not" msgstr "not" -#: TurtleArt/tabasics.py:839 TurtleArt/tabasics.py:847 +#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:857 msgid "if then else" msgstr "if then else" -#: TurtleArt/tabasics.py:875 +#: TurtleArt/tabasics.py:885 msgid "stops current action" msgstr "stops current action" -#: TurtleArt/tabasics.py:185 +#: TurtleArt/tabasics.py:187 msgid "turns turtle clockwise (angle in degrees)" msgstr "turns turtle clockwise (angle in degrees)" -#: TurtleArt/tabasics.py:410 +#: TurtleArt/tabasics.py:414 msgid "holds current gray level (can be used in place of a number block)" msgstr "holds current gray level (can be used in place of a number block)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 msgid "xcor of left of screen" msgstr "xcor of left of screen" -#: turtleblocks.py:402 +#: turtleblocks.py:425 msgid "Reset block size" msgstr "Reset block size" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:670 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758 +#: TurtleArt/tabasics.py:122 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:676 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:794 msgid "turtle" msgstr "turtle" -#: TurtleArt/tapalette.py:97 +#: TurtleArt/tapalette.py:98 msgid "displays next palette" msgstr "displays next palette" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:812 msgid "hide blocks" msgstr "hide blocks" @@ -2345,35 +2419,35 @@ msgstr "hide blocks" msgid "light level detected by camera" msgstr "light level detected by camera" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:554 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560 msgid "Python int operator" msgstr "Python int operator" -#: TurtleArt/tabasics.py:732 +#: TurtleArt/tabasics.py:740 msgid "logical less-than operator" msgstr "logical less-than operator" -#: TurtleArt/tabasics.py:1055 +#: TurtleArt/tabasics.py:1069 msgid "restore all blocks from trash" msgstr "restore all blocks from trash" -#: turtleblocks.py:382 +#: turtleblocks.py:404 msgid "Save" msgstr "Save" -#: TurtleArt/tabasics.py:929 +#: TurtleArt/tabasics.py:941 msgid "store in box 1" msgstr "store in box 1" -#: TurtleArt/tabasics.py:943 +#: TurtleArt/tabasics.py:955 msgid "store in box 2" msgstr "store in box 2" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:793 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831 msgid "hides the Sugar toolbars" msgstr "hides the Sugar toolbars" -#: TurtleArt/tabasics.py:241 +#: TurtleArt/tabasics.py:243 msgid "" "holds current x-coordinate value of the turtle (can be used in place of a " "number block)" @@ -2381,24 +2455,24 @@ msgstr "" "holds current x-coordinate value of the turtle (can be used in place of a " "number block)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:536 msgid "print" msgstr "print" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345 msgid "returns mouse x coordinate" msgstr "returns mouse x coordinate" -#: TurtleArt/tabasics.py:510 +#: TurtleArt/tabasics.py:516 msgid "red" msgstr "red" -#: TurtleArtActivity.py:200 TurtleArtActivity.py:781 TurtleArtActivity.py:964 -#: TurtleArtActivity.py:1000 turtleblocks.py:386 +#: TurtleArtActivity.py:207 TurtleArtActivity.py:806 TurtleArtActivity.py:989 +#: TurtleArtActivity.py:1025 turtleblocks.py:408 msgid "Save as Logo" msgstr "Save as Logo" -#: TurtleArt/tabasics.py:347 +#: TurtleArt/tabasics.py:351 msgid "sets color of the line drawn by the turtle" msgstr "sets color of the line drawn by the turtle" @@ -2415,29 +2489,30 @@ msgstr "Enable collaboration" #: plugins/audio_sensors/audio_sensors.py:75 #: plugins/camera_sensor/camera_sensor.py:63 #: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:313 msgid "Palette of sensor blocks" msgstr "Palette of sensor blocks" -#: TurtleArtActivity.py:785 TurtleArtActivity.py:988 TurtleArtActivity.py:1010 +#: TurtleArtActivity.py:810 TurtleArtActivity.py:1013 +#: TurtleArtActivity.py:1035 msgid "Load plugin" msgstr "Load plugin" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334 msgid "returns True if mouse button is pressed" msgstr "returns True if mouse button is pressed" -#: TurtleArt/tabasics.py:707 +#: TurtleArt/tabasics.py:715 msgid "number" msgstr "number" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:359 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363 msgid "query keyboard" msgstr "query keyboard" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:714 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:926 msgid "top" msgstr "top" @@ -2445,7 +2520,7 @@ msgstr "top" msgid "Submit to Web" msgstr "Submit to Web" -#: TurtleArtActivity.py:664 TurtleArtActivity.py:822 turtleblocks.py:392 +#: TurtleArtActivity.py:685 TurtleArtActivity.py:847 turtleblocks.py:414 msgid "Cartesian coordinates" msgstr "Cartesian coordinates" @@ -2453,45 +2528,45 @@ msgstr "Cartesian coordinates" msgid "Nickname" msgstr "Nickname" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:215 msgid "set scale" msgstr "set scale" -#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:2156 -#: TurtleArtActivity.py:775 +#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:2205 +#: TurtleArtActivity.py:800 msgid "Share selected blocks" msgstr "Share selected blocks" -#: TurtleArt/tabasics.py:520 +#: TurtleArt/tabasics.py:526 msgid "white" msgstr "white" -#: TurtleArt/tabasics.py:892 +#: TurtleArt/tabasics.py:904 msgid "connects action to toolbar run buttons" msgstr "connects action to toolbar run buttons" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:428 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:432 msgid "elapsed time (in seconds) since program started" msgstr "elapsed time (in seconds) since program started" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:297 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299 msgid "amplitude" msgstr "amplitude" -#: TurtleArt/tawindow.py:1634 TurtleArt/tawindow.py:1673 +#: TurtleArt/tawindow.py:1682 TurtleArt/tawindow.py:1721 #: gnome_plugins/uploader_plugin.py:144 msgid "Cancel" msgstr "Cancel" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:899 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:937 msgid "the canvas height" msgstr "the canvas height" -#: TurtleArt/tabasics.py:619 +#: TurtleArt/tabasics.py:627 msgid "minus" msgstr "minus" -#: TurtleArt/tabasics.py:760 TurtleArt/tabasics.py:763 +#: TurtleArt/tabasics.py:768 TurtleArt/tabasics.py:771 msgid "and" msgstr "and" @@ -2499,17 +2574,17 @@ msgstr "and" msgid "top of a collapsible stack" msgstr "top of a collapsible stack" -#: TurtleArt/talogo.py:631 +#: TurtleArt/talogo.py:632 msgid "as input" msgstr "as input" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:605 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:622 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:638 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:611 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:628 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644 msgid "Python block" msgstr "Python block" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:255 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257 msgid "media wait" msgstr "media wait" @@ -2518,29 +2593,25 @@ msgstr "media wait" msgid "acceleration" msgstr "acceleration" -#: TurtleArt/tabasics.py:491 +#: TurtleArt/tabasics.py:495 msgid "holds current pen size (can be used in place of a number block)" msgstr "holds current pen size (can be used in place of a number block)" -#: TurtleArt/tabasics.py:343 -msgid "set color" -msgstr "set color" - -#: TurtleArt/tabasics.py:691 +#: TurtleArt/tabasics.py:699 msgid "min" msgstr "min" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:735 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:759 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 msgid "loads a block" msgstr "loads a block" -#: TurtleArt/tabasics.py:308 +#: TurtleArt/tabasics.py:312 msgid "Palette of pen commands" msgstr "Palette of pen commands" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:459 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:465 msgid "shows values in FILO (first-in last-out heap)" msgstr "shows values in FILO (first-in last-out heap)" @@ -2549,108 +2620,108 @@ msgid "do-while-True operator that uses boolean operators from Numbers palette" msgstr "" "do-while-True operator that uses boolean operators from Numbers palette" -#: turtleblocks.py:389 +#: turtleblocks.py:411 msgid "File" msgstr "File" -#: TurtleArt/tabasics.py:754 +#: TurtleArt/tabasics.py:762 msgid "logical NOT operator" msgstr "logical NOT operator" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:867 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:905 msgid "ycor of bottom of screen" msgstr "ycor of bottom of screen" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:828 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:866 msgid "presentation template: select Journal object (with description)" msgstr "presentation template: select Journal object (with description)" -#: TurtleArt/tabasics.py:601 +#: TurtleArt/tabasics.py:609 msgid "Palette of numeric operators" msgstr "Palette of numeric operators" -#: TurtleArt/tabasics.py:633 +#: TurtleArt/tabasics.py:641 msgid "multiply" msgstr "multiply" -#: TurtleArt/tabasics.py:800 +#: TurtleArt/tabasics.py:810 msgid "forever" msgstr "forever" -#: TurtleArtActivity.py:1302 +#: TurtleArtActivity.py:1327 #, python-format msgid "Plugin %s already installed." msgstr "Plugin %s already installed." -#: TurtleArt/tabasics.py:361 +#: TurtleArt/tabasics.py:365 msgid "sets shade of the line drawn by the turtle" msgstr "sets shade of the line drawn by the turtle" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:288 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:290 msgid "speaks text" msgstr "speaks text" -#: TurtleArtActivity.py:265 +#: TurtleArtActivity.py:272 msgid "snapshot" msgstr "snapshot" -#: TurtleArt/tabasics.py:156 +#: TurtleArt/tabasics.py:158 msgid "clean" msgstr "clean" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:849 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:880 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887 msgid "presentation template: select two Journal objects" msgstr "presentation template: select two Journal objects" -#: TurtleArtActivity.py:675 TurtleArtActivity.py:830 turtleblocks.py:398 +#: TurtleArtActivity.py:696 TurtleArtActivity.py:855 turtleblocks.py:421 msgid "Grow blocks" msgstr "Grow blocks" -#: TurtleArtActivity.py:661 TurtleArtActivity.py:821 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:791 +#: TurtleArtActivity.py:682 TurtleArtActivity.py:846 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:829 msgid "Fullscreen" msgstr "Fullscreen" -#: turtleblocks.py:275 +#: turtleblocks.py:297 msgid "File not found" msgstr "File not found" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 msgid "show" msgstr "show" -#: TurtleArt/tabasics.py:899 TurtleArt/tabasics.py:900 -#: TurtleArt/tabasics.py:901 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:178 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:179 +#: TurtleArt/tabasics.py:911 TurtleArt/tabasics.py:912 +#: TurtleArt/tabasics.py:913 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:201 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:203 msgid "text" msgstr "text" -#: TurtleArt/tabasics.py:691 +#: TurtleArt/tabasics.py:699 msgid "random" msgstr "random" -#: TurtleArt/tabasics.py:719 +#: TurtleArt/tabasics.py:727 msgid "logical greater-than operator" msgstr "logical greater-than operator" -#: TurtleArt/tabasics.py:173 +#: TurtleArt/tabasics.py:175 msgid "turns turtle counterclockwise (angle in degrees)" msgstr "turns turtle counterclockwise (angle in degrees)" -#: TurtleArt/tabasics.py:521 +#: TurtleArt/tabasics.py:527 msgid "black" msgstr "black" -#: TurtleArt/tabasics.py:684 +#: TurtleArt/tabasics.py:692 msgid "calculates square root" msgstr "calculates square root" -#: TurtleArt/tabasics.py:255 +#: TurtleArt/tabasics.py:257 msgid "" "holds current y-coordinate value of the turtle (can be used in place of a " "number block)" @@ -2658,11 +2729,11 @@ msgstr "" "holds current y-coordinate value of the turtle (can be used in place of a " "number block)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:338 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:342 msgid "mouse x" msgstr "mouse x" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352 msgid "mouse y" msgstr "mouse y" @@ -2670,27 +2741,27 @@ msgstr "mouse y" msgid "stop" msgstr "stop" -#: TurtleArt/tabasics.py:716 +#: TurtleArt/tabasics.py:724 msgid "greater than" msgstr "greater than" -#: TurtleArt/tabasics.py:240 TurtleArt/tawindow.py:4247 +#: TurtleArt/tabasics.py:242 TurtleArt/tawindow.py:4301 msgid "xcor" msgstr "xcor" -#: TurtleArtActivity.py:759 turtleblocks.py:437 util/helpbutton.py:44 +#: TurtleArtActivity.py:784 turtleblocks.py:460 util/helpbutton.py:44 msgid "Help" msgstr "Help" -#: turtleblocks.py:477 +#: turtleblocks.py:500 msgid "Save project?" msgstr "Save project?" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:680 msgid "chooses which turtle to command" msgstr "chooses which turtle to command" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:942 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:980 msgid "right x" msgstr "right x" @@ -2699,32 +2770,32 @@ msgstr "right x" msgid "light level detected by light sensor" msgstr "light level detected by light sensor" -#: TurtleArtActivity.py:1203 TurtleArtActivity.py:1208 -#: TurtleArtActivity.py:1288 +#: TurtleArtActivity.py:1228 TurtleArtActivity.py:1233 +#: TurtleArtActivity.py:1313 msgid "Plugin could not be installed." msgstr "Plugin could not be installed." -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:368 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:372 msgid "keyboard" msgstr "keyboard" -#: TurtleArt/tabasics.py:195 +#: TurtleArt/tabasics.py:197 msgid "arc" msgstr "arc" -#: TurtleArt/tabasics.py:195 +#: TurtleArt/tabasics.py:197 msgid "radius" msgstr "radius" -#: TurtleArtActivity.py:666 TurtleArtActivity.py:824 turtleblocks.py:394 +#: TurtleArtActivity.py:687 TurtleArtActivity.py:849 turtleblocks.py:416 msgid "Polar coordinates" msgstr "Polar coordinates" -#: TurtleArt/tabasics.py:357 +#: TurtleArt/tabasics.py:361 msgid "set shade" msgstr "set shade" -#: TurtleArt/tabasics.py:764 +#: TurtleArt/tabasics.py:772 msgid "logical AND operator" msgstr "logical AND operator" @@ -2736,23 +2807,19 @@ msgstr "" "You must have an account at http://turtleartsite.sugarlabs.org to upload " "your project." -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 -msgid "palette" -msgstr "palette" - -#: TurtleArtActivity.py:753 TurtleArtActivity.py:1037 turtleblocks.py:429 +#: TurtleArtActivity.py:778 TurtleArtActivity.py:1062 turtleblocks.py:452 msgid "Run" msgstr "Run" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:462 msgid "show heap" msgstr "show heap" -#: TurtleArt/tabasics.py:230 +#: TurtleArt/tabasics.py:232 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.)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:759 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795 msgid "selects a palette" msgstr "selects a palette" @@ -2766,19 +2833,19 @@ msgid "Title:" msgstr "Title:" #: plugins/camera_sensor/camera_sensor.py:67 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:125 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127 msgid "Palette of media objects" msgstr "Palette of media objects" -#: TurtleArtActivity.py:653 +#: TurtleArtActivity.py:674 msgid "Restore blocks from trash" msgstr "Restore blocks from trash" -#: TurtleArt/tabasics.py:884 +#: TurtleArt/tabasics.py:896 msgid "Palette of variable blocks" msgstr "Palette of variable blocks" -#: TurtleArt/tabasics.py:708 +#: TurtleArt/tabasics.py:716 msgid "used as numeric input in mathematic operators" msgstr "used as numeric input in mathematic operators" @@ -2792,7 +2859,7 @@ msgstr "Upload" msgid "Server" msgstr "Server" -#: TurtleArt/tabasics.py:960 +#: TurtleArt/tabasics.py:972 msgid "Variable 1 (numeric value)" msgstr "Variable 1 (numeric value)" @@ -2800,68 +2867,68 @@ msgstr "Variable 1 (numeric value)" msgid "Neighborhood" msgstr "Neighborhood" -#: TurtleArt/tabasics.py:611 +#: TurtleArt/tabasics.py:619 msgid "adds two alphanumeric inputs" msgstr "adds two alphanumeric inputs" -#: TurtleArt/tabasics.py:740 +#: TurtleArt/tabasics.py:748 msgid "equal" msgstr "equal" -#: TurtleArt/tabasics.py:835 +#: TurtleArt/tabasics.py:845 msgid "else" msgstr "else" -#: TurtleArt/talogo.py:630 +#: TurtleArt/talogo.py:631 msgid "doesn't like" msgstr "doesn't like" -#: turtleblocks.py:475 +#: turtleblocks.py:498 msgid "You have unsaved work. Would you like to save before quitting?" msgstr "You have unsaved work. Would you like to save before quitting?" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:785 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:823 msgid "restores hidden blocks" msgstr "restores hidden blocks" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:720 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:743 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:767 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779 msgid "load" msgstr "load" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:265 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:267 msgid "stop video or audio" msgstr "stop video or audio" -#: TurtleArt/tabasics.py:422 +#: TurtleArt/tabasics.py:426 msgid "Turtle will not draw when moved." msgstr "Turtle will not draw when moved." #. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: pop removes a new item from the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489 msgid "pop" msgstr "pop" -#: TurtleArt/tabasics.py:490 +#: TurtleArt/tabasics.py:494 msgid "pen size" msgstr "pen size" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:706 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:732 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742 msgid "turtle shell" msgstr "turtle shell" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:300 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302 msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)" msgstr "plays a sinewave at frequency, amplitude, and duration (in seconds)" -#: TurtleArt/tabasics.py:680 +#: TurtleArt/tabasics.py:688 msgid "√" msgstr "√" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:287 msgid "speak" msgstr "speak" @@ -2869,50 +2936,50 @@ msgstr "speak" msgid "read value from RFID device" msgstr "read value from RFID device" -#: TurtleArt/tabasics.py:199 +#: TurtleArt/tabasics.py:201 msgid "moves turtle along an arc" msgstr "moves turtle along an arc" -#: TurtleArt/tabasics.py:744 +#: TurtleArt/tabasics.py:752 msgid "logical equal-to operator" msgstr "logical equal-to operator" -#: TurtleArt/tabasics.py:508 +#: TurtleArt/tabasics.py:514 msgid "Palette of pen colors" msgstr "Palette of pen colors" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274 msgid "pause video or audio" msgstr "pause video or audio" -#: TurtleArt/tabasics.py:934 +#: TurtleArt/tabasics.py:946 msgid "stores numeric value in Variable 1" msgstr "stores numeric value in Variable 1" -#: TurtleArt/tabasics.py:948 +#: TurtleArt/tabasics.py:960 msgid "stores numeric value in Variable 2" msgstr "stores numeric value in Variable 2" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:698 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:707 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:743 msgid "put a custom 'shell' on the turtle" msgstr "put a custom 'shell' on the turtle" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:327 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:320 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:331 msgid "button down" msgstr "button down" -#: TurtleArt/tabasics.py:146 +#: TurtleArt/tabasics.py:148 msgid "moves turtle backward" msgstr "moves turtle backward" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:891 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:929 msgid "ycor of top of screen" msgstr "ycor of top of screen" -#: TurtleArt/talogo.py:384 TurtleArtActivity.py:383 TurtleArtActivity.py:756 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1428 +#: TurtleArt/talogo.py:384 TurtleArtActivity.py:392 TurtleArtActivity.py:781 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1469 msgid "Show blocks" msgstr "Show blocks" @@ -2928,23 +2995,23 @@ msgstr "save" msgid "Colors" msgstr "Colors" -#: TurtleArt/tabasics.py:457 +#: TurtleArt/tabasics.py:461 msgid "sets size of the line drawn by the turtle" msgstr "sets size of the line drawn by the turtle" -#: TurtleArtActivity.py:980 turtleblocks.py:380 +#: TurtleArtActivity.py:1005 turtleblocks.py:402 msgid "Open" msgstr "Open" -#: TurtleArt/tawindow.py:1102 TurtleArt/tawindow.py:1103 +#: TurtleArt/tawindow.py:1142 TurtleArt/tawindow.py:1143 msgid "orientation" msgstr "orientation" -#: TurtleArt/tabasics.py:254 TurtleArt/tawindow.py:4248 +#: TurtleArt/tabasics.py:256 TurtleArt/tawindow.py:4302 msgid "ycor" msgstr "ycor" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:579 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585 msgid "" "a programmable block: used to add advanced multi-variable math equations, e." "g., sqrt(x*x+y*y)" @@ -2952,47 +3019,47 @@ msgstr "" "a programmable block: used to add advanced multi-variable math equations, e." "g., sqrt(x*x+y*y)" -#: TurtleArt/tabasics.py:822 TurtleArt/tabasics.py:835 +#: TurtleArt/tabasics.py:832 TurtleArt/tabasics.py:845 msgid "if" msgstr "if" -#: TurtleArt/tabasics.py:214 TurtleArt/tabasics.py:292 +#: TurtleArt/tabasics.py:216 TurtleArt/tabasics.py:294 msgid "" "moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." msgstr "" "moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:561 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:575 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:589 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:567 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:581 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595 msgid "Python" msgstr "Python" -#: TurtleArtActivity.py:760 turtleblocks.py:432 +#: TurtleArtActivity.py:785 turtleblocks.py:455 msgid "Stop" msgstr "Stop" -#: TurtleArt/tabasics.py:1014 TurtleArt/tabasics.py:1034 +#: TurtleArt/tabasics.py:1026 TurtleArt/tabasics.py:1046 msgid "action 2" msgstr "action 2" -#: TurtleArt/tabasics.py:1005 TurtleArt/tabasics.py:1024 +#: TurtleArt/tabasics.py:1017 TurtleArt/tabasics.py:1036 msgid "action 1" msgstr "action 1" -#: TurtleArt/tabasics.py:479 +#: TurtleArt/tabasics.py:483 msgid "end fill" msgstr "end fill" -#: TurtleArtActivity.py:649 TurtleArtActivity.py:803 turtleblocks.py:410 +#: TurtleArtActivity.py:670 TurtleArtActivity.py:828 turtleblocks.py:433 msgid "Copy" msgstr "Copy" -#: TurtleArtActivity.py:651 TurtleArtActivity.py:804 turtleblocks.py:411 +#: TurtleArtActivity.py:672 TurtleArtActivity.py:829 turtleblocks.py:434 msgid "Paste" msgstr "Paste" -#: TurtleArt/talogo.py:512 +#: TurtleArt/talogo.py:513 msgid "did not output to" msgstr "did not output to" @@ -3004,44 +3071,44 @@ msgstr "Activities" msgid "Upload to Web" msgstr "Upload to Web" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:469 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:475 msgid "empty heap" msgstr "empty heap" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:487 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:493 msgid "pops value off FILO (first-in last-out heap)" msgstr "pops value off FILO (first-in last-out heap)" -#: TurtleArtActivity.py:752 TurtleArtActivity.py:1035 turtleblocks.py:428 +#: TurtleArtActivity.py:777 TurtleArtActivity.py:1060 turtleblocks.py:451 msgid "Clean" msgstr "Clean" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:767 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:805 msgid "Palette of presentation templates" msgstr "Palette of presentation templates" -#: TurtleArt/tabasics.py:195 +#: TurtleArt/tabasics.py:197 msgid "angle" msgstr "angle" -#: TurtleArt/tabasics.py:658 +#: TurtleArt/tabasics.py:666 msgid "identity" msgstr "identity" -#: TurtleArtActivity.py:641 TurtleArtActivity.py:748 TurtleArtActivity.py:777 -#: TurtleArtActivity.py:779 TurtleArtActivity.py:956 +#: TurtleArtActivity.py:662 TurtleArtActivity.py:773 TurtleArtActivity.py:802 +#: TurtleArtActivity.py:804 TurtleArtActivity.py:981 msgid "Save/Load" msgstr "Save/Load" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:933 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:971 msgid "top y" msgstr "top y" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:143 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:145 msgid "audio" msgstr "audio" -#: turtleblocks.py:425 +#: turtleblocks.py:448 msgid "Tools" msgstr "Tools" @@ -3049,16 +3116,16 @@ msgstr "Tools" msgid "Port" msgstr "Port" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:521 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527 msgid "comment" msgstr "comment" -#: TurtleArt/tabasics.py:622 +#: TurtleArt/tabasics.py:630 msgid "subtracts bottom numeric input from top numeric input" msgstr "subtracts bottom numeric input from top numeric input" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272 msgid "media pause" msgstr "media pause" @@ -3066,15 +3133,15 @@ msgstr "media pause" msgid "push destination rgb value to heap" msgstr "push destination rgb value to heap" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365 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:654 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660 msgid "Cartesian" msgstr "Cartesian" -#: TurtleArt/tabasics.py:159 +#: TurtleArt/tabasics.py:161 msgid "clears the screen and reset the turtle" msgstr "clears the screen and reset the turtle" @@ -3083,49 +3150,49 @@ msgstr "clears the screen and reset the turtle" msgid "raw microphone input signal" msgstr "raw microphone input signal" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:421 msgid "returns the color that the turtle \"sees\"" msgstr "returns the color that the turtle \"sees\"" -#: TurtleArt/tabasics.py:1027 +#: TurtleArt/tabasics.py:1039 msgid "invokes Action 1 stack" msgstr "invokes Action 1 stack" -#: TurtleArt/tabasics.py:124 +#: TurtleArt/tabasics.py:126 msgid "Palette of turtle commands" msgstr "Palette of turtle commands" -#: TurtleArt/tabasics.py:804 +#: TurtleArt/tabasics.py:814 msgid "loops forever" msgstr "loops forever" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:200 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:202 msgid "show aligned" msgstr "show aligned" -#: TurtleArtActivity.py:1303 +#: TurtleArtActivity.py:1328 #, python-format msgid "Do you want to reinstall %s?" msgstr "Do you want to reinstall %s?" -#: TurtleArtActivity.py:782 TurtleArtActivity.py:983 TurtleArtActivity.py:1005 -#: turtleblocks.py:381 +#: TurtleArtActivity.py:807 TurtleArtActivity.py:1008 +#: TurtleArtActivity.py:1030 turtleblocks.py:403 msgid "Load project" msgstr "Load project" -#: TurtleArtActivity.py:635 TurtleArtActivity.py:751 +#: TurtleArtActivity.py:656 TurtleArtActivity.py:776 msgid "Project" msgstr "Project" -#: turtleblocks.py:431 +#: turtleblocks.py:454 msgid "Debug" msgstr "Debug" -#: TurtleArtActivity.py:318 TurtleArtActivity.py:681 TurtleArtActivity.py:832 +#: TurtleArtActivity.py:325 TurtleArtActivity.py:702 TurtleArtActivity.py:857 msgid "Turn off hover help" msgstr "Turn off hover help" -#: TurtleArt/tabasics.py:668 TurtleArt/tabasics.py:669 +#: TurtleArt/tabasics.py:676 TurtleArt/tabasics.py:677 msgid "mod" msgstr "mod" @@ -3133,15 +3200,15 @@ msgstr "mod" msgid "Password" msgstr "Password" -#: TurtleArt/tabasics.py:865 +#: TurtleArt/tabasics.py:875 msgid "vertical space" msgstr "vertical space" -#: TurtleArtActivity.py:1284 +#: TurtleArtActivity.py:1309 msgid "Please restart Turtle Art in order to use the plugin." msgstr "Please restart Turtle Art in order to use the plugin." -#: TurtleArt/tabasics.py:481 +#: TurtleArt/tabasics.py:485 msgid "completes filled polygon (used with start fill block)" msgstr "completes filled polygon (used with start fill block)" @@ -3149,72 +3216,72 @@ msgstr "completes filled polygon (used with start fill block)" msgid "Share" msgstr "Share" -#: TurtleArt/tabasics.py:728 +#: TurtleArt/tabasics.py:736 msgid "less than" msgstr "less than" -#: TurtleArt/tabasics.py:681 +#: TurtleArt/tabasics.py:689 msgid "square root" msgstr "square root" -#: turtleblocks.py:396 +#: turtleblocks.py:419 msgid "Rescale coordinates" msgstr "Rescale coordinates" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:821 msgid "show blocks" msgstr "show blocks" -#: turtleblocks.py:388 +#: turtleblocks.py:410 msgid "Quit" msgstr "Quit" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:169 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:171 msgid "Sugar Journal description field" msgstr "Sugar Journal description field" -#: TurtleArt/tabasics.py:371 +#: TurtleArt/tabasics.py:375 msgid "set gray" msgstr "set gray" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:806 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:844 msgid "presentation bulleted list" msgstr "presentation bulleted list" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:297 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299 msgid "duration" msgstr "duration" -#: turtleblocks.py:375 +#: turtleblocks.py:397 msgid "New" msgstr "New" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:523 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 msgid "places a comment in your code" msgstr "places a comment in your code" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:408 msgid "read pixel" msgstr "read pixel" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 msgid "scale" msgstr "scale" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:864 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902 msgid "bottom" msgstr "bottom" -#: TurtleArt/tabasics.py:518 +#: TurtleArt/tabasics.py:524 msgid "purple" msgstr "purple" -#: TurtleArtActivity.py:509 +#: TurtleArtActivity.py:518 msgid "Rescale coordinates down" msgstr "Rescale coordinates down" #: TurtleArt/tautils.py:593 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:712 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:748 msgid "click to open" msgstr "click to open" @@ -3231,15 +3298,15 @@ msgstr "Configuration" msgid "Description:" msgstr "Description:" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:132 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:134 msgid "journal" msgstr "journal" -#: TurtleArt/tabasics.py:1049 +#: TurtleArt/tabasics.py:1063 msgid "empty trash" msgstr "empty trash" -#: TurtleArt/tabasics.py:434 +#: TurtleArt/tabasics.py:438 msgid "Turtle will draw when moved." msgstr "Turtle will draw when moved." @@ -3247,56 +3314,57 @@ msgstr "Turtle will draw when moved." msgid "Load..." msgstr "Load..." -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:145 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:147 msgid "Sugar Journal audio object" msgstr "Sugar Journal audio object" -#: TurtleArt/talogo.py:374 TurtleArtActivity.py:755 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1437 +#: TurtleArt/talogo.py:374 TurtleArt/tawindow.py:1457 TurtleArtActivity.py:780 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1478 msgid "Stop turtle" msgstr "Stop turtle" -#: turtleblocks.py:433 +#: turtleblocks.py:456 msgid "Turtle" msgstr "Turtle" -#: TurtleArt/tapalette.py:98 +#: TurtleArt/tapalette.py:99 msgid "changes the orientation of the palette of blocks" msgstr "changes the orientation of the palette of blocks" -#: TurtleArt/tabasics.py:976 TurtleArt/tawindow.py:4581 +#: TurtleArt/tabasics.py:988 TurtleArt/tawindow.py:4643 msgid "store in" msgstr "store in" -#: TurtleArt/talogo.py:388 TurtleArtActivity.py:387 TurtleArtActivity.py:1041 +#: TurtleArt/talogo.py:388 TurtleArtActivity.py:396 TurtleArtActivity.py:1066 msgid "Hide blocks" msgstr "Hide blocks" -#: TurtleArtActivity.py:786 TurtleArtActivity.py:991 TurtleArtActivity.py:1013 +#: TurtleArtActivity.py:811 TurtleArtActivity.py:1016 +#: TurtleArtActivity.py:1038 msgid "Load Python block" msgstr "Load Python block" -#: TurtleArt/tabasics.py:607 +#: TurtleArt/tabasics.py:615 msgid "plus" msgstr "plus" -#: TurtleArt/tabasics.py:771 TurtleArt/tabasics.py:774 +#: TurtleArt/tabasics.py:779 TurtleArt/tabasics.py:782 msgid "or" msgstr "or" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:814 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:852 msgid "presentation template: list of bullets" msgstr "presentation template: list of bullets" -#: TurtleArt/tabasics.py:660 +#: TurtleArt/tabasics.py:668 msgid "identity operator used for extending blocks" msgstr "identity operator used for extending blocks" -#: TurtleArtActivity.py:678 TurtleArtActivity.py:831 turtleblocks.py:400 +#: TurtleArtActivity.py:699 TurtleArtActivity.py:856 turtleblocks.py:423 msgid "Shrink blocks" msgstr "Shrink blocks" -#: TurtleArt/tabasics.py:269 +#: TurtleArt/tabasics.py:271 msgid "" "holds current heading value of the turtle (can be used in place of a number " "block)" @@ -3304,55 +3372,55 @@ msgstr "" "holds current heading value of the turtle (can be used in place of a number " "block)" -#: TurtleArt/tawindow.py:4362 +#: TurtleArt/tawindow.py:4424 msgid "image" msgstr "image" -#: TurtleArt/tabasics.py:695 +#: TurtleArt/tabasics.py:703 msgid "returns random number between minimum (top) and maximum (bottom) values" msgstr "" "returns random number between minimum (top) and maximum (bottom) values" -#: TurtleArt/tabasics.py:385 +#: TurtleArt/tabasics.py:389 msgid "holds current pen color (can be used in place of a number block)" msgstr "holds current pen color (can be used in place of a number block)" -#: TurtleArtActivity.py:335 turtleblocks.py:419 +#: TurtleArtActivity.py:344 turtleblocks.py:442 msgid "Show palette" msgstr "Show palette" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:228 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:230 msgid "saves a picture to the Sugar Journal" msgstr "saves a picture to the Sugar Journal" -#: TurtleArtActivity.py:273 TurtleArtActivity.py:715 TurtleArtActivity.py:757 -#: TurtleArtActivity.py:970 TurtleArtActivity.py:1003 +#: TurtleArtActivity.py:280 TurtleArtActivity.py:740 TurtleArtActivity.py:782 +#: TurtleArtActivity.py:995 TurtleArtActivity.py:1028 msgid "Save snapshot" msgstr "Save snapshot" -#: TurtleArt/tabasics.py:889 pysamples/grecord.py:214 +#: TurtleArt/tabasics.py:901 pysamples/grecord.py:214 msgid "start" msgstr "start" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:501 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:511 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:507 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:517 msgid "returns True if heap is empty" msgstr "returns True if heap is empty" -#: TurtleArt/tabasics.py:133 +#: TurtleArt/tabasics.py:135 msgid "moves turtle forward" msgstr "moves turtle forward" -#: TurtleArt/tabasics.py:129 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 +#: TurtleArt/tabasics.py:131 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:770 msgid "forward" msgstr "forward" -#: TurtleArt/tabasics.py:980 TurtleArt/tabasics.py:995 -#: TurtleArt/tawindow.py:1453 TurtleArt/tawindow.py:1585 -#: TurtleArt/tawindow.py:2182 TurtleArt/tawindow.py:4542 -#: TurtleArt/tawindow.py:4572 +#: TurtleArt/tabasics.py:992 TurtleArt/tabasics.py:1007 +#: TurtleArt/tawindow.py:1500 TurtleArt/tawindow.py:1633 +#: TurtleArt/tawindow.py:2231 TurtleArt/tawindow.py:4604 +#: TurtleArt/tawindow.py:4634 msgid "my box" msgstr "my box" @@ -3360,31 +3428,31 @@ msgstr "my box" msgid "Account ID" msgstr "Account ID" -#: TurtleArt/tawindow.py:1467 +#: TurtleArt/tawindow.py:1514 msgid "Select blocks to share" msgstr "Select blocks to share" -#: TurtleArt/tabasics.py:142 +#: TurtleArt/tabasics.py:144 msgid "back" msgstr "back" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:217 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:219 msgid "sets the scale of media" msgstr "sets the scale of media" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:250 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252 msgid "holds current scale value" msgstr "holds current scale value" -#: TurtleArt/tabasics.py:911 +#: TurtleArt/tabasics.py:923 msgid "top of nameable action stack" msgstr "top of nameable action stack" -#: TurtleArt/tabasics.py:981 TurtleArt/tawindow.py:4586 +#: TurtleArt/tabasics.py:993 TurtleArt/tawindow.py:4648 msgid "stores numeric value in named variable" msgstr "stores numeric value in named variable" -#: TurtleArt/tabasics.py:775 +#: TurtleArt/tabasics.py:783 msgid "logical OR operator" msgstr "logical OR operator" @@ -3395,7 +3463,7 @@ msgstr "logical OR operator" msgid "microphone input voltage" msgstr "microphone input voltage" -#: TurtleArt/tabasics.py:816 +#: TurtleArt/tabasics.py:826 msgid "loops specified number of times" msgstr "loops specified number of times" @@ -3403,23 +3471,23 @@ msgstr "loops specified number of times" msgid "Save..." msgstr "Save..." -#: TurtleArt/tabasics.py:1037 +#: TurtleArt/tabasics.py:1049 msgid "invokes Action 2 stack" msgstr "invokes Action 2 stack" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:746 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:782 msgid "setxy" msgstr "setxy" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:953 msgid "title y" msgstr "title y" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:906 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:944 msgid "title x" msgstr "title x" -#: TurtleArt/tabasics.py:313 TurtleArt/tabasics.py:326 +#: TurtleArt/tabasics.py:317 TurtleArt/tabasics.py:330 msgid "fill screen" msgstr "fill screen" @@ -3427,37 +3495,38 @@ msgstr "fill screen" msgid "other" msgstr "other" -#: turtleblocks.py:383 +#: turtleblocks.py:405 msgid "Save as" msgstr "Save as" -#: TurtleArt/tabasics.py:210 TurtleArt/tabasics.py:288 +#: TurtleArt/tabasics.py:212 TurtleArt/tabasics.py:290 msgid "set xy" msgstr "set xy" -#: TurtleArt/tabasics.py:1045 +#: TurtleArt/tabasics.py:1055 TurtleArt/tabasics.py:1059 +#: TurtleArt/tapalette.py:138 TurtleArt/tapalette.py:139 msgid "trash" msgstr "trash" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:668 msgid "polar" msgstr "polar" -#: TurtleArt/tabasics.py:811 TurtleArt/tabasics.py:815 +#: TurtleArt/tabasics.py:821 TurtleArt/tabasics.py:825 msgid "repeat" msgstr "repeat" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 msgid "wait for current video or audio to complete" msgstr "wait for current video or audio to complete" -#: TurtleArtActivity.py:257 TurtleArtActivity.py:780 TurtleArtActivity.py:961 -#: TurtleArtActivity.py:997 turtleblocks.py:384 +#: TurtleArtActivity.py:264 TurtleArtActivity.py:805 TurtleArtActivity.py:986 +#: TurtleArtActivity.py:1022 turtleblocks.py:406 msgid "Save as image" msgstr "Save as image" -#: TurtleArtActivity.py:603 TurtleArtActivity.py:639 TurtleArtActivity.py:749 -#: TurtleArtActivity.py:802 turtleblocks.py:416 +#: TurtleArtActivity.py:625 TurtleArtActivity.py:660 TurtleArtActivity.py:774 +#: TurtleArtActivity.py:827 turtleblocks.py:439 msgid "Edit" msgstr "Edit" @@ -3468,39 +3537,39 @@ msgstr "Edit" msgid "microphone input resistance" msgstr "microphone input resistance" -#: TurtleArt/tabasics.py:1017 +#: TurtleArt/tabasics.py:1029 msgid "top of Action 2 stack" msgstr "top of Action 2 stack" -#: TurtleArt/tabasics.py:648 +#: TurtleArt/tabasics.py:656 msgid "" "divides top numeric input (numerator) by bottom numeric input (denominator)" msgstr "" "divides top numeric input (numerator) by bottom numeric input (denominator)" -#: TurtleArt/tabasics.py:691 +#: TurtleArt/tabasics.py:699 msgid "max" msgstr "max" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:534 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540 msgid "prints value in status block at bottom of the screen" msgstr "prints value in status block at bottom of the screen" -#: TurtleArt/tabasics.py:468 +#: TurtleArt/tabasics.py:472 msgid "start fill" msgstr "start fill" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:372 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376 msgid "holds results of query-keyboard block as ASCII" msgstr "holds results of query-keyboard block as ASCII" #. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: push adds a new item to the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:443 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:449 msgid "push" msgstr "push" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:599 msgid "" "a programmable block: used to add advanced multi-variable math equations, e." "g., sin(x+y+z)" @@ -3508,11 +3577,11 @@ msgstr "" "a programmable block: used to add advanced multi-variable math equations, e." "g., sin(x+y+z)" -#: TurtleArt/tabasics.py:1054 +#: TurtleArt/tabasics.py:1068 msgid "restore all" msgstr "restore all" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:287 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:289 msgid "hello" msgstr "hello" @@ -3520,45 +3589,65 @@ msgstr "hello" msgid "TurtleBlocks" msgstr "TurtleBlocks" -#: TurtleArt/tabasics.py:443 +#: TurtleArt/tabasics.py:308 +msgid "pen" +msgstr "pen" + +#: TurtleArt/tabasics.py:347 +msgid "set color" +msgstr "set color" + +#: TurtleArt/tabasics.py:447 msgid "pen down?" msgstr "pen down?" -#: TurtleArt/tabasics.py:445 +#: TurtleArt/tabasics.py:449 msgid "returns True if pen is down" msgstr "returns True if pen is down" -#: TurtleArt/tawindow.py:1414 -msgid "" -"Please hit the Stop Button before making changes to your Turtle Blocks " -"program" -msgstr "" -"Please hit the Stop Button before making changes to your Turtle Blocks " -"program" +#: TurtleArt/tabasics.py:510 +msgid "colors" +msgstr "colors" + +#: TurtleArt/tabasics.py:605 +msgid "numbers" +msgstr "numbers" + +#: TurtleArt/tabasics.py:790 +msgid "flow" +msgstr "flow" + +#: TurtleArt/tabasics.py:892 +msgid "blocks" +msgstr "blocks" + +#: TurtleArt/tawindow.py:1461 +msgid "Please hit the Stop Button before making changes to your program" +msgstr "Please hit the Stop Button before making changes to your program" -#: TurtleArt/tawindow.py:1630 TurtleArtActivity.py:656 -#: TurtleArtActivity.py:805 turtleblocks.py:412 +#: TurtleArt/tawindow.py:1678 TurtleArtActivity.py:677 +#: TurtleArtActivity.py:830 turtleblocks.py:435 msgid "Save stack" msgstr "Save stack" -#: TurtleArt/tawindow.py:1631 TurtleArt/tawindow.py:1645 +#: TurtleArt/tawindow.py:1679 TurtleArt/tawindow.py:1693 msgid "Really overwrite stack?" msgstr "Really overwrite stack?" -#: TurtleArt/tawindow.py:1638 TurtleArt/tawindow.py:1648 +#: TurtleArt/tawindow.py:1686 TurtleArt/tawindow.py:1696 msgid "Overwrite stack" msgstr "Overwrite stack" -#: TurtleArt/tawindow.py:1669 TurtleArt/tawindow.py:1677 -#: TurtleArt/tawindow.py:1686 TurtleArtActivity.py:658 turtleblocks.py:414 +#: TurtleArt/tawindow.py:1717 TurtleArt/tawindow.py:1725 +#: TurtleArt/tawindow.py:1734 TurtleArtActivity.py:679 turtleblocks.py:437 msgid "Delete stack" msgstr "Delete stack" -#: TurtleArt/tawindow.py:1670 TurtleArt/tawindow.py:1683 +#: TurtleArt/tawindow.py:1718 TurtleArt/tawindow.py:1731 msgid "Really delete stack?" msgstr "Really delete stack?" -#: TurtleArtActivity.py:933 +#: TurtleArtActivity.py:958 msgid "Palettes" msgstr "Palettes" @@ -3566,16 +3655,60 @@ msgstr "Palettes" msgid "Facebook wall post" msgstr "Facebook wall post" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:123 +msgid "media" +msgstr "media" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:438 +msgid "extras" +msgstr "extras" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:688 +msgid "turtle x" +msgstr "turtle x" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:691 +msgid "Returns x coordinate of turtle" +msgstr "Returns x coordinate of turtle" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:698 +msgid "turtle y" +msgstr "turtle y" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701 +msgid "Returns y coordinate of turtle" +msgstr "Returns y coordinate of turtle" + #. TRANS: pop removes a new item from the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:709 msgid "active turtle" msgstr "active turtle" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:712 msgid "the name of the active turtle" msgstr "the name of the active turtle" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:968 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:720 +msgid "turtle heading" +msgstr "turtle heading" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 +msgid "Returns heading of turtle" +msgstr "Returns heading of turtle" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:792 +msgid "select palette" +msgstr "select palette" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:801 +msgid "portfolio" +msgstr "portfolio" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1002 +msgid "my blocks" +msgstr "my blocks" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1007 msgid "Palette of user-defined operators" msgstr "Palette of user-defined operators" @@ -3608,18 +3741,27 @@ msgstr "" msgid "turns the turtle 180 degrees" msgstr "turns the turtle 180 degrees" -#: turtleblocks.py:376 +#: turtleblocks.py:398 msgid "Show sample projects" msgstr "Show sample projects" -#: turtleblocks.py:378 +#: turtleblocks.py:400 msgid "Hide sample projects" msgstr "Hide sample projects" -#: turtleblocks.py:436 +#: turtleblocks.py:459 msgid "About..." msgstr "About..." +#~ msgid "touch" +#~ msgstr "touch" + +#~ msgid "ultrasonic" +#~ msgstr "ultrasonic" + +#~ msgid "touch sensor" +#~ msgstr "touch sensor" + #~ msgid "custom module sensor A" #~ msgstr "custom module sensor A" @@ -3770,6 +3912,9 @@ msgstr "About..." #~ msgid "sets color of text drawn by the turtle" #~ msgstr "sets color of text drawn by the turtle" +#~ msgid "palette" +#~ msgstr "palette" + #~ msgid "presentation 2x2" #~ msgstr "presentation 2x2" @@ -3862,15 +4007,6 @@ msgstr "About..." #~ msgid "return calibration 2" #~ msgstr "return calibration 2" -#~ msgid "RGB" -#~ msgstr "RGB" - -#~ msgid "YUV" -#~ msgstr "YUV" - -#~ msgid "HSV" -#~ msgstr "HSV" - #~ msgid "Please check the port." #~ msgstr "Please check the port." @@ -4098,9 +4234,6 @@ msgstr "About..." #~ msgid " clean " #~ msgstr " clean " -#~ msgid "numbers" -#~ msgstr "numbers" - #~ msgid "write" #~ msgstr "write" @@ -4112,9 +4245,6 @@ msgstr "About..." #~ msgstr "" #~ "a programmable block: used to add advanced math equations, e.g., sin(x)" -#~ msgid "blocks" -#~ msgstr "blocks" - #~ msgid "text size" #~ msgstr "text size" @@ -4127,12 +4257,6 @@ msgstr "About..." #~ msgid "picture top" #~ msgstr "picture top" -#~ msgid "flow" -#~ msgstr "flow" - -#~ msgid "portfolio" -#~ msgstr "portfolio" - #~ msgid "restores most recent blocks from trash" #~ msgstr "restores most recent blocks from trash" @@ -4151,9 +4275,6 @@ msgstr "About..." #~ msgid "Trashcan" #~ msgstr "Trashcan" -#~ msgid "pen" -#~ msgstr "pen" - #~ msgid "picture right" #~ msgstr "picture right" @@ -4169,9 +4290,6 @@ msgstr "About..." #~ msgid "holds current text size (can be used in place of a number block)" #~ msgstr "holds current text size (can be used in place of a number block)" -#~ msgid "extras" -#~ msgstr "extras" - #~ msgid "stack 2" #~ msgstr "stack 2" @@ -4181,9 +4299,6 @@ msgstr "About..." #~ msgid "Keyboard" #~ msgstr "Keyboard" -#~ msgid "My Blocks" -#~ msgstr "My Blocks" - #~ msgid "Numbers" #~ msgstr "Numbers" diff --git a/po/es.po b/po/es.po index 119e48f..cd7b3c8 100644 --- a/po/es.po +++ b/po/es.po @@ -2,23 +2,8 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -#, fuzzy msgid "" msgstr "" -"#-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-#\n" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-10-09 14:26-0400\n" -"PO-Revision-Date: 2013-10-09 21:05+0200\n" -"Last-Translator: AlanJAS \n" -"Language-Team: LANGUAGE \n" -"Language: es\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 != 1);\n" -"X-Generator: Pootle 2.0.5\n" -"#-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-10-08 00:30-0400\n" @@ -33,4058 +18,3072 @@ msgstr "" "X-Generator: Pootle 2.0.5\n" #. TRANS: "name" option from activity.info file +msgid "TurtleBlocks" +msgstr "TortuBlocks" + #. TRANS: "summary" option from activity.info file #. TRANS: "description" option from activity.info file -msgid "turtleart-extras (master)" -msgstr "turtleart-extras (master)" +msgid "" +"A Logo-inspired turtle that draws colorful pictures with snap-together " +"visual programming blocks" +msgstr "" +"Una tortuga inspirada en Logo que hace dibujos coloridos junto con bloques " +"complementarios de programación visual" -#: taextras.py:37 -msgid "Turtle Blocks" -msgstr "TortuBlocks" +#: TurtleArt/tabasics.py:122 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:676 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:794 +msgid "turtle" +msgstr "tortuga" -#: taextras.py:38 -msgid "Turtle Art" -msgstr "TortugArte" +#: TurtleArt/tabasics.py:126 +msgid "Palette of turtle commands" +msgstr "Paleta de comandos de la tortuga" -#: taextras.py:42 -msgid "Turtle Art Mini" -msgstr "TortugArte Mini" +#: TurtleArt/tabasics.py:131 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:770 +msgid "forward" +msgstr "adelante" -#: taextras.py:46 -msgid "Turtle Confusion" -msgstr "TortugArte Confusión" +#: TurtleArt/tabasics.py:135 +msgid "moves turtle forward" +msgstr "mueve la tortuga hacia adelante" -#: taextras.py:47 taextras.py:52 -msgid "Select a challenge" -msgstr "Selecciona un desafío" +#: TurtleArt/tabasics.py:144 +msgid "back" +msgstr "atrás" -#: taextras.py:51 -msgid "Amazonas Tortuga" -msgstr "Tortuga Amazonas" +#: TurtleArt/tabasics.py:148 +msgid "moves turtle backward" +msgstr "mueve la tortuga hacia atrás" -#: taextras.py:56 -msgid "Turtle Flags" -msgstr "Tortuga Banderas" +#: TurtleArt/tabasics.py:158 +msgid "clean" +msgstr "limpiar" -#: taextras.py:57 -msgid "Use the turtle to draw country flags" -msgstr "Usa la tortuga para dibujar las banderas de los países" +#: TurtleArt/tabasics.py:161 +msgid "clears the screen and reset the turtle" +msgstr "limpia la pantalla y restaura la tortuga" -#: taextras.py:63 -msgid "Palette of Mexican pesos" -msgstr "Paleta de Pesos Mexicanos" +#: TurtleArt/tabasics.py:171 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "left" +msgstr "izquierda" -#: taextras.py:64 -msgid "Palette of Colombian pesos" -msgstr "Paleta de Pesos Colombianos" +#: TurtleArt/tabasics.py:175 +msgid "turns turtle counterclockwise (angle in degrees)" +msgstr "gira la tortuga en sentido anti-horario (ángulo en grados)" -#: taextras.py:65 -msgid "Palette of Rwandan francs" -msgstr "Paleta de Francos de Ruanda" +#: TurtleArt/tabasics.py:183 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:918 +msgid "right" +msgstr "derecha" -#: taextras.py:66 -msgid "Palette of US dollars" -msgstr "Paleta de Dólares Americanos" +#: TurtleArt/tabasics.py:187 +msgid "turns turtle clockwise (angle in degrees)" +msgstr "gira la tortuga en sentido horario (ángulo en grados)" -#: taextras.py:67 -msgid "Palette of Australian dollars" -msgstr "Paleta de Dólares Australianos" +#: TurtleArt/tabasics.py:197 +msgid "arc" +msgstr "arco" -#: taextras.py:68 -msgid "Palette of Paraguayan Guaranies" -msgstr "Paleta de Guaraníes Paraguayos" +#: TurtleArt/tabasics.py:197 +msgid "angle" +msgstr "ángulo" -#: taextras.py:69 -msgid "Palette of Peruvian Nuevo Soles" -msgstr "Paletea de Nuevos Soles Peruanos" +#: TurtleArt/tabasics.py:197 +msgid "radius" +msgstr "radio" -#: taextras.py:70 -msgid "Palette of Uruguayan Pesos" -msgstr "Paleta de Pesos Uruguayos" +#: TurtleArt/tabasics.py:201 +msgid "moves turtle along an arc" +msgstr "mueve la tortuga a lo largo de un arco" -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: Butia is a Robot Project from Uruguay -#. (http://www.fing.edu.uy/inco/proyectos/butia/) -#: taextras.py:76 -#, fuzzy -msgid "TurtleBots" -msgstr "" -"#-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-#\n" -"TortuBots\n" -"#-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-#\n" -"TurtleBots" +#: TurtleArt/tabasics.py:212 TurtleArt/tabasics.py:290 +msgid "set xy" +msgstr "fijar xy" -#. TRANS: summary of TurtleBots activity -#: taextras.py:78 -msgid "TurtleBlocks with Butia, Lego NxT, WeDo, Arduino, FollowMe plugins" -msgstr "TortuBlocks con plugins: Butiá, Lego NxT, WeDo, Arduino, FollowMe" +#: TurtleArt/tabasics.py:212 TurtleArt/tabasics.py:290 +msgid "x" +msgstr "x" -#: taextras.py:79 -msgid "ERROR: The speed must be a value between 0 and 1023" -msgstr "ERROR: La velocidad debe ser un valor entre 0 y 1023" +#: TurtleArt/tabasics.py:212 TurtleArt/tabasics.py:290 +msgid "y" +msgstr "y" -#: taextras.py:80 -msgid "ERROR: The speed must be a value between -1023 and 1023" -msgstr "ERROR: La velocidad debe ser un valor entre -1023 y 1023" +#: TurtleArt/tabasics.py:216 TurtleArt/tabasics.py:294 +msgid "" +"moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." +msgstr "" +"mueve la tortuga a la posición xcor, ycor; (0, 0) está en el centro de la " +"pantalla." -#: taextras.py:81 -msgid "ERROR: The pin must be between 1 and 8" -msgstr "ERROR: El pin debe estar entre 1 y 8" +# rumbo is the word traditionally used in LOGO; we should try to maintain consistency with the LOGO community +#: TurtleArt/tabasics.py:228 +msgid "set heading" +msgstr "fijar rumbo" -#: taextras.py:82 -msgid "ERROR: The value must be 0 or 1, LOW or HIGH" -msgstr "ERROR: El valor debe ser 0 o 1, ALTO o BAJO" +#: TurtleArt/tabasics.py:232 +msgid "sets the heading of the turtle (0 is towards the top of the screen.)" +msgstr "" +"fija la orientación de la tortuga (0 es hacia la parte superior de la " +"pantalla.)" -#: taextras.py:83 -msgid "ERROR: The mode must be INPUT or OUTPUT." -msgstr "ERROR: El modo debe ser ENTRADA o SALIDA." +#: TurtleArt/tabasics.py:242 TurtleArt/tawindow.py:4301 +msgid "xcor" +msgstr "coorx" -#: taextras.py:84 -msgid "turns LED on and off: 1 means on, 0 means off" -msgstr "prende o apaga el LED: 1 significa prendido, 0 significa apagado" +#: TurtleArt/tabasics.py:243 +msgid "" +"holds current x-coordinate value of the turtle (can be used in place of a " +"number block)" +msgstr "" +"contiene la coordenada x actual de la tortuga (se puede usar en vez de un " +"bloque de número)" -#: taextras.py:85 -msgid "returns the gray level as a value between 0 and 65535" -msgstr "devuelve el nivel de gris como un valor entre 0 y 65535" +#: TurtleArt/tabasics.py:256 TurtleArt/tawindow.py:4302 +msgid "ycor" +msgstr "coory" -#: taextras.py:86 -msgid "returns 1 when the button is pressed and 0 otherwise" -msgstr "devuelve 1 cuando el botón está presionado y 0 en otro caso" +#: TurtleArt/tabasics.py:257 +msgid "" +"holds current y-coordinate value of the turtle (can be used in place of a " +"number block)" +msgstr "" +"contiene la coordenada y actual de la tortuga (se puede usar en vez de un " +"bloque de número)" -#: taextras.py:87 -msgid "returns the light level as a value between 0 and 65535" -msgstr "devuelve el nivel de luz como un valor entre 0 y 65535" +#: TurtleArt/tabasics.py:270 TurtleArt/tawindow.py:4302 +msgid "heading" +msgstr "rumbo" -#: taextras.py:88 -msgid "returns the distance as a value between 0 and 65535" -msgstr "devuelve la distancia como un valor entre 0 y 65535" +#: TurtleArt/tabasics.py:271 +msgid "" +"holds current heading value of the turtle (can be used in place of a number " +"block)" +msgstr "" +"contiene la orientación actual de la tortuga (se puede usar en vez de un " +"bloque de número)" -#: taextras.py:89 -msgid "returns the resistance value (ohms)" -msgstr "devuelve el valor de la resistencia (ohms)" +#: TurtleArt/tabasics.py:308 +msgid "pen" +msgstr "pluma" -#: taextras.py:90 -msgid "returns the voltage value (volts)" -msgstr "devuelve el valor del voltaje (volts)" +#: TurtleArt/tabasics.py:312 +msgid "Palette of pen commands" +msgstr "Paleta de órdenes de la pluma" -#: taextras.py:91 -msgid "returns the temperature value (celsius degree)" -msgstr "devuelve el valor de la temperatura (grados Celsius)" +#: TurtleArt/tabasics.py:317 TurtleArt/tabasics.py:330 +msgid "fill screen" +msgstr "rellenar pantalla" -#: taextras.py:92 -#, python-format -msgid "custom module %s" -msgstr "módulo personalizado %s" +#: TurtleArt/tabasics.py:317 TurtleArt/tabasics.py:330 +#: TurtleArt/tabasics.py:388 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1132 +msgid "color" +msgstr "color" -#: taextras.py:93 -msgid "sensor a" -msgstr "sensor a" +#: TurtleArt/tabasics.py:317 TurtleArt/tabasics.py:331 +#: TurtleArt/tabasics.py:401 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1128 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1133 +msgid "shade" +msgstr "tono" -#: taextras.py:94 -msgid "sensor b" -msgstr "sensor b" +#: TurtleArt/tabasics.py:321 TurtleArt/tabasics.py:335 +msgid "fills the background with (color, shade)" +msgstr "rellena el fondo con (color, sombra)" -#: taextras.py:95 -msgid "sensor c" -msgstr "sensor c" +#: TurtleArt/tabasics.py:331 TurtleArt/tabasics.py:413 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1129 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1134 +msgid "gray" +msgstr "gris" -#: taextras.py:96 -msgid "actuator a" -msgstr "actuador a" +#: TurtleArt/tabasics.py:347 +msgid "set color" +msgstr "fijar color" -#: taextras.py:97 -msgid "actuator b" -msgstr "actuador b" +#: TurtleArt/tabasics.py:351 +msgid "sets color of the line drawn by the turtle" +msgstr "fija el color de la línea que la tortuga dibuja" -#: taextras.py:98 -msgid "actuator c" -msgstr "actuador c" +#: TurtleArt/tabasics.py:361 +msgid "set shade" +msgstr "fijar tono" -#: taextras.py:99 -msgid "LED" -msgstr "LED" +#: TurtleArt/tabasics.py:365 +msgid "sets shade of the line drawn by the turtle" +msgstr "fija la tonalidad de la linea que la tortuga dibuja" -#: taextras.py:100 taextras.py:397 -msgid "button" -msgstr "botón" +#: TurtleArt/tabasics.py:375 +msgid "set gray" +msgstr "establecer gris" -#: taextras.py:101 taextras.py:402 TurtleArt/tabasics.py:331 -#: TurtleArt/tabasics.py:413 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1129 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1134 -msgid "gray" -msgstr "gris" +#: TurtleArt/tabasics.py:378 +msgid "sets gray level of the line drawn by the turtle" +msgstr "establece el nivel de gris de la línea dibujada por la tortuga" -#: taextras.py:102 taextras.py:400 -msgid "light" -msgstr "luz" +#: TurtleArt/tabasics.py:389 +msgid "holds current pen color (can be used in place of a number block)" +msgstr "" +"contiene el color actual de la pluma (se puede usar en vez de un bloque de " +"número)" -#: taextras.py:103 taextras.py:376 taextras.py:398 -msgid "distance" -msgstr "distancia" +#: TurtleArt/tabasics.py:402 +msgid "holds current pen shade" +msgstr "contiene la tonalidad actual de la pluma" -#: taextras.py:104 plugins/audio_sensors/audio_sensors.py:151 -#: plugins/audio_sensors/audio_sensors.py:165 -#: plugins/audio_sensors/audio_sensors.py:179 -#: plugins/audio_sensors/audio_sensors.py:193 -msgid "resistance" -msgstr "resistencia" +#: TurtleArt/tabasics.py:414 +msgid "holds current gray level (can be used in place of a number block)" +msgstr "" +"contiene el nivel actual de gris (puede ser utilizado en vez de un bloque " +"numérico)" -#: taextras.py:105 plugins/audio_sensors/audio_sensors.py:157 -#: plugins/audio_sensors/audio_sensors.py:171 -#: plugins/audio_sensors/audio_sensors.py:185 -#: plugins/audio_sensors/audio_sensors.py:199 -msgid "voltage" -msgstr "voltaje" +# verbo +#: TurtleArt/tabasics.py:423 +msgid "pen up" +msgstr "subir pluma" -#: taextras.py:106 -msgid "temperature" -msgstr "temperatura" +#: TurtleArt/tabasics.py:426 +msgid "Turtle will not draw when moved." +msgstr "La tortuga no dibujará cuando se mueva." -#: taextras.py:107 -msgid "butia" -msgstr "butiá" +#: TurtleArt/tabasics.py:435 +msgid "pen down" +msgstr "bajar pluma" -#: taextras.py:108 -msgid "Butia Robot" -msgstr "Robot Butiá" +#: TurtleArt/tabasics.py:438 +msgid "Turtle will draw when moved." +msgstr "La tortuga dibujará cuando se mueva." -#: taextras.py:109 -msgid "refresh Butia" -msgstr "refrescar Butiá" +#: TurtleArt/tabasics.py:447 +msgid "pen down?" +msgstr "¿pluma baja?" -#: taextras.py:110 -msgid "refresh the state of the Butia palette and blocks" -msgstr "actualiza el estado de la paleta y de los bloques Butiá" +#: TurtleArt/tabasics.py:449 +msgid "returns True if pen is down" +msgstr "devuelve Verdadero si la pluma está baja" -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: This string is shorthand for "battery charge of Butia" -#: taextras.py:112 -msgid "battery charge Butia" -msgstr "carga de batería Butiá" +#: TurtleArt/tabasics.py:457 +msgid "set pen size" +msgstr "fijar tamaño" -#: taextras.py:113 -msgid "" -"returns the battery charge in volts. If no motors present, it returns 255" -msgstr "" -"devuelve la carga de la batería en volts. Si no hay motores, devuelve 255" +#: TurtleArt/tabasics.py:461 +msgid "sets size of the line drawn by the turtle" +msgstr "fija el ancho de la línea que la tortuga dibuja" -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: This string is shorthand for "speed of Butia" -#: taextras.py:115 -msgid "speed Butia" -msgstr "velocidad Butiá" +#: TurtleArt/tabasics.py:472 +msgid "start fill" +msgstr "comenzar a rellenar" -#: taextras.py:116 -msgid "set the speed of the Butia motors" -msgstr "establece la velocidad de los motores del Butiá" +#: TurtleArt/tabasics.py:474 +msgid "starts filled polygon (used with end fill block)" +msgstr "" +"comenzar a rellenar el poligono (usado con finalizar el relleno del bloque)" -#: taextras.py:117 -msgid "move Butia" -msgstr "mover Butiá" +#: TurtleArt/tabasics.py:483 +msgid "end fill" +msgstr "finalizar relleno" -#: taextras.py:118 TurtleArt/tabasics.py:171 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "left" -msgstr "izquierda" +#: TurtleArt/tabasics.py:485 +msgid "completes filled polygon (used with start fill block)" +msgstr "" +"completa el polígono relleno (utilizado con comenzar relleno del bloque)" -#: taextras.py:119 TurtleArt/tabasics.py:183 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:918 -msgid "right" -msgstr "derecha" +#: TurtleArt/tabasics.py:494 +msgid "pen size" +msgstr "tamaño" -#: taextras.py:120 -msgid "moves the Butia motors at the specified speed" -msgstr "mueve los motores del Butiá a la velocidad especificada" - -#: taextras.py:121 -msgid "stop Butia" -msgstr "detener Butiá" - -#: taextras.py:122 -msgid "stop the Butia robot" -msgstr "detiene al robot Butiá" - -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: This string is shorthand for "move Butia forward" -#: taextras.py:124 -msgid "forward Butia" -msgstr "adelante Butiá" - -#: taextras.py:125 -msgid "move the Butia robot forward" -msgstr "mueve el robot Butiá hacia adelante" - -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: This string is shorthand for "turn Butia left" -#: taextras.py:127 -msgid "left Butia" -msgstr "izquierda Butiá" - -#: taextras.py:128 -msgid "turn the Butia robot at left" -msgstr "gira el robot Butiá hacia la izquierda" - -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: This string is shorthand for "turn Butia right" -#: taextras.py:130 -msgid "right Butia" -msgstr "derecha Butiá" - -#: taextras.py:131 -msgid "turn the Butia robot at right" -msgstr "gira el robot Butiá hacia la derecha" - -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: This string is shorthand for "move Butia backward" -#: taextras.py:133 -msgid "backward Butia" -msgstr "atrás Butiá" - -#: taextras.py:134 -msgid "move the Butia robot backward" -msgstr "mueve el robot Butiá hacia atrás" - -#: taextras.py:135 -msgid "butia-extra" -msgstr "butiá-extra" - -#. TRANS: cast means data type conversion -#: taextras.py:137 -msgid "Butia Robot extra blocks" -msgstr "Bloques extra del Robot Butiá" - -#: taextras.py:138 -msgid "pin mode Butia" -msgstr "modo del pin Butiá" - -# #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -# puede ser: alfiler, perno, clavija, clavo - En Physics es: Tachuela (asi que por coherencia, usé Tachuela) -#: taextras.py:139 taextras.py:339 taextras.py:508 -#, fuzzy -msgid "pin" +#: TurtleArt/tabasics.py:495 +msgid "holds current pen size (can be used in place of a number block)" msgstr "" -"#-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-#\n" -"pin\n" -"#-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-#\n" -"tachuela" +"contiene el tamaño actual de la pluma (se puede usar en vez de un bloque de " +"número)" -#: taextras.py:140 taextras.py:509 -msgid "mode" -msgstr "modo" +#: TurtleArt/tabasics.py:510 +msgid "colors" +msgstr "colores" -#: taextras.py:141 -msgid "Select the pin function (INPUT, OUTPUT)." -msgstr "Selecciona la función del pin (ENTRADA, SALIDA)." +#: TurtleArt/tabasics.py:514 +msgid "Palette of pen colors" +msgstr "Paleta de colores de la pluma" -#: taextras.py:142 -msgid "read pin Butia" -msgstr "leer pin Butiá" +#: TurtleArt/tabasics.py:516 +msgid "red" +msgstr "rojo" -#: taextras.py:143 -msgid "read the value of a pin" -msgstr "lee el valor de un pin" +#: TurtleArt/tabasics.py:517 +msgid "orange" +msgstr "naranja" -#: taextras.py:144 -msgid "write pin Butia" -msgstr "escribir en pin Butiá" +#: TurtleArt/tabasics.py:519 +msgid "yellow" +msgstr "amarillo" -#: taextras.py:145 taextras.py:512 TurtleArt/tabasics.py:988 -#: TurtleArt/tawindow.py:4643 -msgid "value" -msgstr "valor" +#: TurtleArt/tabasics.py:521 +msgid "green" +msgstr "verde" -#: taextras.py:146 -msgid "set a hack pin to 0 or 1" -msgstr "establce el hack pin en 0 o 1" +#: TurtleArt/tabasics.py:522 +msgid "cyan" +msgstr "cian" -#: taextras.py:147 taextras.py:485 -msgid "INPUT" -msgstr "ENTRADA" +#: TurtleArt/tabasics.py:523 +msgid "blue" +msgstr "azul" -#: taextras.py:148 -msgid "Configure hack pin for digital input." -msgstr "Configura un pin como entrada digital." +#: TurtleArt/tabasics.py:524 +msgid "purple" +msgstr "morado" -#: taextras.py:149 taextras.py:483 -msgid "HIGH" -msgstr "ALTO" +#: TurtleArt/tabasics.py:526 +msgid "white" +msgstr "blanco" -#: taextras.py:150 -msgid "Set HIGH value for digital pin." -msgstr "Establece el valor ALTO en un pin digital." +#: TurtleArt/tabasics.py:527 +msgid "black" +msgstr "negro" -#: taextras.py:151 taextras.py:484 -msgid "LOW" -msgstr "BAJO" +#: TurtleArt/tabasics.py:605 +msgid "numbers" +msgstr "números" -#: taextras.py:152 taextras.py:524 -#, fuzzy -msgid "Set LOW value for digital port." -msgstr "" -"#-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-#\n" -"Establece el valor BAJO en el puerto digital.\n" -"#-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-#\n" -"Setea el valor BAJO en el puerto digital." - -#: taextras.py:153 taextras.py:486 -msgid "OUTPUT" -msgstr "SALIDA" - -#: taextras.py:154 -msgid "Configure hack port for digital output." -msgstr "Configura el puerto hack como salida digital." - -#: taextras.py:155 -msgid "butia-cast" -msgstr "butiá-casteo" - -#: taextras.py:156 -msgid "Butia Robot cast blocks" -msgstr "Bloques de casteo del Robot Butiá" - -#: taextras.py:157 -msgid "Butia" -msgstr "Butiá" - -#. TRANS: cast means data type conversion -#: taextras.py:159 -msgid "CAST\n" -msgstr "CASTEO\n" - -#: taextras.py:160 -msgid "new name" -msgstr "nuevo nombre" - -#: taextras.py:161 -msgid "original" -msgstr "original" - -#: taextras.py:162 -msgid "f(x)=" -msgstr "f(x)=" - -#: taextras.py:163 -msgid "name" -msgstr "nombre" - -#. TRANS: cast means data type conversion -#: taextras.py:165 -msgid "Cast a new block" -msgstr "Castea un nuevo bloque" - -#: taextras.py:166 -#, python-format -msgid "generic module %s" -msgstr "módulo genérico %s" +#: TurtleArt/tabasics.py:609 +msgid "Palette of numeric operators" +msgstr "Paleta de operadores numéricos" -#: taextras.py:167 -msgid "Butia IP" -msgstr "Butiá IP" +#: TurtleArt/tabasics.py:615 +msgid "plus" +msgstr "sumar" -#: taextras.py:168 -msgid "change the ip of butia robot" -msgstr "cambia la ip del robot Butiá" +#: TurtleArt/tabasics.py:619 +msgid "adds two alphanumeric inputs" +msgstr "suma dos entradas alfanuméricas" -#: taextras.py:169 -#, python-format -msgid "ERROR: The pin %s must be in OUTPUT mode." -msgstr "ERROR: El pin %s debe estar en modo SALIDA." +#: TurtleArt/tabasics.py:627 +msgid "minus" +msgstr "menos" -#: taextras.py:170 -#, python-format -msgid "ERROR: The pin %s must be in INPUT mode." -msgstr "ERROR: El pin %s debe estar en modo ENTRADA." +#: TurtleArt/tabasics.py:630 +msgid "subtracts bottom numeric input from top numeric input" +msgstr "sustrae la entrada numérica de abajo de la entrada numérica de arriba" -#: taextras.py:171 -#, python-format -msgid "ERROR: Something wrong with function '%s'" -msgstr "ERROR: Ocurre algo con la función '%s'" +#: TurtleArt/tabasics.py:641 +msgid "multiply" +msgstr "multiplicar" -#: taextras.py:172 -#, python-format -msgid "ERROR: cannot init GCONF client: %s" -msgstr "ERROR: no se puede iniciar el cliente de GCONF: %s" +#: TurtleArt/tabasics.py:644 +msgid "multiplies two numeric inputs" +msgstr "multiplica dos entradas numéricas" -#. TRANS: cast means data type conversion -#: taextras.py:174 -msgid "ERROR: You must cast Sensor or Actuator: A, B or C" -msgstr "ERROR: Debes castear un Sensor o Actuador: A, B o C" +#: TurtleArt/tabasics.py:653 +msgid "divide" +msgstr "dividir" -#: taextras.py:175 -#, python-format -msgid "ERROR: Invalid IP '%s'" -msgstr "ERROR: IP inválida '%s'" - -#: taextras.py:176 -msgid "Creating PyBot server" -msgstr "Creando PyBot server" - -#: taextras.py:177 -msgid "ERROR creating PyBot server" -msgstr "ERROR creando PyBot server" - -#: taextras.py:178 -msgid "PyBot is alive!" -msgstr "¡PyBot está vivo!" - -#: taextras.py:179 -msgid "Ending butia polling" -msgstr "Finalizando Butiá polling" - -#: taextras.py:183 -msgid "Error importing Pygame. This plugin require Pygame 1.9" -msgstr "Error importando Pygame. Este plugin requiere Pygame 1.9" - -#: taextras.py:184 -msgid "Error on initialization of the camera" -msgstr "Error en la inicialización de la cámara" - -#: taextras.py:185 -msgid "No camera was found" -msgstr "No se encontraró cámara" - -#: taextras.py:186 -msgid "Error stopping camera" -msgstr "Error deteniendo cámara" - -#: taextras.py:187 -msgid "Error starting camera" -msgstr "Error iniciando cámara" - -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: The "mask" is used to restrict processing to a region in the image -#: taextras.py:189 -msgid "Error in get mask" -msgstr "Error en obtener máscara" - -#: taextras.py:190 -msgid "followme" -msgstr "followme" - -#: taextras.py:191 -msgid "FollowMe" -msgstr "FollowMe" - -#: taextras.py:192 -msgid "refresh FollowMe" -msgstr "refrescar FollowMe" - -#: taextras.py:193 -msgid "Search for a connected camera." -msgstr "Busca una cámara conectada." - -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: the calibration is used to match an RGB color to a target -#: taextras.py:195 -msgid "calibration" -msgstr "calibración" - -#: taextras.py:196 -msgid "store a personalized calibration" -msgstr "almacena una calibración personalizada" - -#: taextras.py:197 -msgid "return a personalized calibration" -msgstr "devuelve una calibración personalizada" - -#: taextras.py:198 -msgid "follow" -msgstr "seguir" - -#: taextras.py:199 -msgid "follow a color or calibration" -msgstr "seguir un color o calibración" - -#: taextras.py:200 plugins/camera_sensor/camera_sensor.py:80 -#: plugins/camera_sensor/camera_sensor.py:93 -#: plugins/camera_sensor/camera_sensor.py:128 -#: plugins/camera_sensor/camera_sensor.py:141 -#: plugins/light_sensor/light_sensor.py:56 -#: plugins/light_sensor/light_sensor.py:63 -msgid "brightness" -msgstr "brillo" +#: TurtleArt/tabasics.py:656 +msgid "" +"divides top numeric input (numerator) by bottom numeric input (denominator)" +msgstr "" +"divide la entrada numérica de arriba (numerador) por la entrada numérica de " +"bajo (denominador)" -#: taextras.py:201 -msgid "set the camera brightness as a value between 0 to 255." -msgstr "establece el brillo de la cámara como un valor entre 0 y 255." +#: TurtleArt/tabasics.py:666 +msgid "identity" +msgstr "identidad" -#: taextras.py:202 -msgid "minimum pixels" -msgstr "mínimo de pixeles" +#: TurtleArt/tabasics.py:668 +msgid "identity operator used for extending blocks" +msgstr "operador de identidad usado para extender bloques" -#: taextras.py:203 -msgid "set the minimal number of pixels to follow" -msgstr "define el mínimo número de píxeles a seguir" +#: TurtleArt/tabasics.py:676 TurtleArt/tabasics.py:677 +msgid "mod" +msgstr "mod" -#: taextras.py:204 -msgid "threshold" -msgstr "umbral" +#: TurtleArt/tabasics.py:680 +msgid "modular (remainder) operator" +msgstr "operador módular (resto)" -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: RGB color space (red, green, blue) -#: taextras.py:206 -msgid "set a threshold for a RGB color" -msgstr "define el umbral para un color RGB" +#: TurtleArt/tabasics.py:688 +msgid "√" +msgstr "√" -#: taextras.py:207 -msgid "camera mode" -msgstr "modo de cámara" +#: TurtleArt/tabasics.py:689 +msgid "square root" +msgstr "raiz cuadrada" -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: RGB, YUV, and HSV are color spaces -#: taextras.py:209 -msgid "set the color mode of the camera: RGB; YUV or HSV" -msgstr "establece el modo de color de la cámara: RGB, YUV o HSV" +#: TurtleArt/tabasics.py:692 +msgid "calculates square root" +msgstr "calcula la raíz cuadrada" -#: taextras.py:210 -msgid "get brightness" -msgstr "obtener brillo" +#: TurtleArt/tabasics.py:699 +msgid "random" +msgstr "aleatorio" -#: taextras.py:211 -msgid "get the brightness of the ambient light" -msgstr "obtiene el brillo de la luz ambiente" +#: TurtleArt/tabasics.py:699 +msgid "min" +msgstr "min" -#: taextras.py:212 -msgid "average color" -msgstr "color promedio" +#: TurtleArt/tabasics.py:699 +msgid "max" +msgstr "max" -#: taextras.py:213 -msgid "" -"if set to 0 then color averaging is off during calibration;for other values, " -"it is on" -msgstr "" -"Si está en 0 entonces no se usa el color promedio durante la calibración; " -"para otros valores está encendido" - -#: taextras.py:215 -msgid "x position" -msgstr "posición x" - -#: taextras.py:216 -msgid "return x position" -msgstr "retorna la posición x" - -#: taextras.py:217 -msgid "y position" -msgstr "posición y" - -#: taextras.py:218 -msgid "return y position" -msgstr "retorna la posición y" - -#: taextras.py:219 -msgid "pixels" -msgstr "píxeles" - -#: taextras.py:220 -msgid "return the number of pixels of the biggest blob" -msgstr "devuelve el número de píxeles de la mancha mas grande" - -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: RGB color space (red, green, blue) -#: taextras.py:222 -msgid "RGB" -msgstr "RGB" - -#: taextras.py:223 -msgid "set the color mode of the camera to RGB" -msgstr "establece el modo de color de la cámara a RGB" - -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: YUV color space (luminance, chrominance) -#: taextras.py:225 -msgid "YUV" -msgstr "YUV" - -#: taextras.py:226 -msgid "set the color mode of the camera to YUV" -msgstr "establece el modo de color de la cámara a YUV" - -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: HSV color space (hue, saturation, value) -#: taextras.py:228 -msgid "HSV" -msgstr "HSV" - -#: taextras.py:229 -msgid "set the color mode of the camera to HSV" -msgstr "establece el modo de color de la cámara a HSV" - -#: taextras.py:230 -msgid "get color" -msgstr "obtener color" - -#: taextras.py:231 -msgid "get the color of an object" -msgstr "obtiene el color de un objeto" - -#: taextras.py:232 -msgid "color distance" -msgstr "distancia color" - -#: taextras.py:233 -msgid "set the distance to identify a color" -msgstr "establece la distancia para identificar un color" - -#: taextras.py:234 -msgid "empty calibration" -msgstr "calibración vacía" - -#: taextras.py:235 -msgid "error in string conversion" -msgstr "error en la conversión de la cadena de texto" - -#. TRANS: Pattern detection is a plugin that allow detect signals -#. with the camera -#: taextras.py:241 -msgid "Pattern detection" -msgstr "Detección de marcas" - -#: taextras.py:242 -msgid "pattern_detection" -msgstr "detección_marcas" - -#: taextras.py:243 -msgid "Seeing signal" -msgstr "Viendo señal" - -#: taextras.py:244 -msgid "Returns True if the signal is in front of the camera" -msgstr "Devuelve Verdadero si la señal está en frente de la cámara" - -#: taextras.py:245 -msgid "Distance to signal" -msgstr "Distancia a la señal" - -#: taextras.py:246 -msgid "Returns the distance of the signal to the camera in millimeters" -msgstr "Devuelve la distancia entre la cámara y la señal en milímetros" - -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: SumBot is a robot programmed for "Sumo wrestling" -#: taextras.py:251 -msgid "SumBot" -msgstr "SumBot" - -#: taextras.py:252 -msgid "sumtia" -msgstr "sumtia" - -#: taextras.py:253 -msgid "speed SumBot" -msgstr "velocidad SumBot" - -#: taextras.py:254 -msgid "submit the speed to the SumBot" -msgstr "setea la velocidad del SumBot" - -#: taextras.py:255 -msgid "set the default speed for the movement commands" -msgstr "setea la velocidad por defecto para los comandos de movimiento" - -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: This string is shorthand for "move SumBot forward" -#: taextras.py:257 -msgid "forward SumBot" -msgstr "adelante SumBot" - -#: taextras.py:258 -msgid "move SumBot forward" -msgstr "mueve el SumBot hacia adelante" - -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: This string is shorthand for "move SumBot backward" -#: taextras.py:260 -msgid "backward SumBot" -msgstr "atrás SumBot" - -#: taextras.py:261 -msgid "move SumBot backward" -msgstr "mueve el SumBot hacia atrás" - -#: taextras.py:262 -msgid "stop SumBot" -msgstr "detener SumBot" - -#: taextras.py:263 -msgid "stop the SumBot" -msgstr "detiene el SumBot" - -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: This string is shorthand for "turn SumBot left" -#: taextras.py:265 -msgid "left SumBot" -msgstr "izquierda SumBot" - -#: taextras.py:266 -msgid "turn left the SumBot" -msgstr "gira el SumBot hacia la izquierda" - -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: This string is shorthand for "move SumBot right" -#: taextras.py:268 -msgid "right SumBot" -msgstr "derecha SumBot" - -#: taextras.py:269 -msgid "turn right the SumBot" -msgstr "gira el SumBot hacia la derecha" - -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: The angle to the center is the angle SumBot must turn to -#. face the center of the playing field -#: taextras.py:272 -msgid "angle to center" -msgstr "ángulo al centro" - -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: dohyo is the playing field -#: taextras.py:274 -msgid "get the angle to the center of the dohyo" -msgstr "obtiene el ángulo al centro del dohyo" - -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: The angle to the center is the angle SumBot must turn to -#. face the Enemy (opponent) -#: taextras.py:277 -msgid "angle to Enemy" -msgstr "ángulo al Enemigo" - -#: taextras.py:278 -msgid "get the angle to the Enemy" -msgstr "obtiene el ángulo al Enemigo" - -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: This string is shorthand for "x coordinate of SumBot" -#: taextras.py:280 -msgid "x coor. SumBot" -msgstr "coor. x SumBot" - -#: taextras.py:281 -msgid "get the x coordinate of the SumBot" -msgstr "obtiene la coordenada x del Sumbot" - -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: This string is shorthand for "y coordinate of SumBot" -#: taextras.py:283 -msgid "y coor. SumBot" -msgstr "coor. y SumBot" - -#: taextras.py:284 -msgid "get the y coordinate of the SumBot" -msgstr "obtiene la coordenada y del Sumbot" - -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" -#: taextras.py:286 -msgid "x coor. Enemy" -msgstr "coor. x Enemigo" - -#: taextras.py:287 -msgid "get the x coordinate of the Enemy" -msgstr "obtiene la coordenada x del Enemigo" - -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" -#: taextras.py:289 -msgid "y coor. Enemy" -msgstr "coor. y Enemigo" - -#: taextras.py:290 -msgid "get the y coordinate of the Enemy" -msgstr "obtiene la coordenada y del Enemigo" - -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: This string is shorthand for "rotation of SumBot" -#: taextras.py:292 -msgid "rotation SumBot" -msgstr "rotación SumBot" - -#: taextras.py:293 -msgid "get the rotation of the Sumbot" -msgstr "obtiene la rotación del SumBot" - -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: This string is shorthand for "rotation of SumBot's enemy" -#: taextras.py:295 -msgid "rotation Enemy" -msgstr "rotación Enemigo" - -#: taextras.py:296 -msgid "get the rotation of the Enemy" -msgstr "obtiene la rotación del Enemigo" - -#: taextras.py:297 -msgid "distance to center" -msgstr "distancia al centro" - -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: dohyo is the playing field -#: taextras.py:299 -msgid "get the distance to the center of the dohyo" -msgstr "obtiene la distancia al centro del dohyo" - -#: taextras.py:300 -msgid "distance to Enemy" -msgstr "distancia al Enemigo" - -#: taextras.py:301 -msgid "get the distance to the Enemy" -msgstr "obtiene la distancia al Enemigo" - -#: taextras.py:302 -msgid "update information" -msgstr "actualizar información" - -#: taextras.py:303 -msgid "update information from the server" -msgstr "actualiza la información desde el servidor" - -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: Please use similar terms to those used in the Physics Activity -#: taextras.py:308 -msgid "Palette of physics blocks" -msgstr "Paleta de bloques de física" - -#: taextras.py:309 -msgid "start polygon" -msgstr "comenzar polígono" - -#: taextras.py:310 -msgid "Begin defining a new polygon based on the current Turtle xy position." +#: TurtleArt/tabasics.py:703 +msgid "returns random number between minimum (top) and maximum (bottom) values" msgstr "" -"Comienza a definir un nuevo polígono basado en la posición actual xy de la " -"Tortuga." +"devuelve un número aleatorio entre los valores mínimo (arriba) y máximo " +"(abajo)" -#: taextras.py:312 -msgid "add point" -msgstr "agregar punto" +#: TurtleArt/tabasics.py:715 +msgid "number" +msgstr "número" -#: taextras.py:313 -msgid "" -"Add a new point to the current polygon based on the current Turtle xy " -"position." -msgstr "" -"Agrega un nuevo punto al polígono actual basado en la posición actual xy de " -"la Tortuga." +#: TurtleArt/tabasics.py:716 +msgid "used as numeric input in mathematic operators" +msgstr "utilizado como entrada numérica en los operadores matemáticos" -# finalizar polígono -#: taextras.py:315 -msgid "end polygon" -msgstr "terminar polígono" +#: TurtleArt/tabasics.py:724 +msgid "greater than" +msgstr "mayor que" + +#: TurtleArt/tabasics.py:727 +msgid "logical greater-than operator" +msgstr "operador lógico mayor que" + +#: TurtleArt/tabasics.py:736 +msgid "less than" +msgstr "menor que" -#: taextras.py:316 -msgid "Define a new polygon." -msgstr "Define un nuevo polígono." +#: TurtleArt/tabasics.py:740 +msgid "logical less-than operator" +msgstr "operador lógico menor que" -#: taextras.py:317 -msgid "end filled polygon" -msgstr "termina polígono relleno" +#: TurtleArt/tabasics.py:748 +msgid "equal" +msgstr "igual" -#: taextras.py:318 -msgid "Not a simple polygon" -msgstr "No es un polígono simple" +#: TurtleArt/tabasics.py:752 +msgid "logical equal-to operator" +msgstr "operador lógico de igualdad" -#: taextras.py:319 -msgid "Define a new filled polygon." -msgstr "Define un nuevo polígono relleno." +#: TurtleArt/tabasics.py:759 +msgid "not" +msgstr "no" -#: taextras.py:320 -msgid "triangle" -msgstr "triángulo" +#: TurtleArt/tabasics.py:762 +msgid "logical NOT operator" +msgstr "operador NO lógico" -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: base of a triangle -#: taextras.py:322 -msgid "base" -msgstr "base" +#: TurtleArt/tabasics.py:768 TurtleArt/tabasics.py:771 +msgid "and" +msgstr "y" -#: taextras.py:323 taextras.py:329 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:934 -msgid "height" -msgstr "altura" +#: TurtleArt/tabasics.py:772 +msgid "logical AND operator" +msgstr "operador Y lógico" -#: taextras.py:324 -msgid "Add a triangle object to the project." -msgstr "Agrega un objeto triángulo al proyecto." +#: TurtleArt/tabasics.py:779 TurtleArt/tabasics.py:782 +msgid "or" +msgstr "o" -#: taextras.py:325 -msgid "circle" -msgstr "círculo" +#: TurtleArt/tabasics.py:783 +msgid "logical OR operator" +msgstr "operador O lógico" -#: taextras.py:326 -msgid "Add a circle object to the project." -msgstr "Agrega un objeto círculo al proyecto." +#: TurtleArt/tabasics.py:790 +msgid "flow" +msgstr "flujo" -#: taextras.py:327 -msgid "rectangle" -msgstr "rectángulo" +#: TurtleArt/tabasics.py:794 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:91 +msgid "Palette of flow operators" +msgstr "Paleta de operadores de flujo" -#: taextras.py:328 plugins/turtle_blocks_extras/turtle_blocks_extras.py:910 -msgid "width" -msgstr "anchura" +#: TurtleArt/tabasics.py:799 +msgid "wait" +msgstr "esperar" -#: taextras.py:330 -msgid "Add a rectangle object to the project." -msgstr "Agrega un objeto rectángulo al proyecto." +#: TurtleArt/tabasics.py:803 +msgid "pauses program execution a specified number of seconds" +msgstr "detiene la ejecución del programa por número determinado de segundos" -#: taextras.py:331 -msgid "reset" -msgstr "resetear" +#: TurtleArt/tabasics.py:810 +msgid "forever" +msgstr "por siempre" -#: taextras.py:332 -msgid "Reset the project; clear the object list." -msgstr "Resetea el proyecto; limpia la lista de objetos." +#: TurtleArt/tabasics.py:814 +msgid "loops forever" +msgstr "repetir para siempre" -#: taextras.py:333 -msgid "motor" -msgstr "motor" +#: TurtleArt/tabasics.py:821 TurtleArt/tabasics.py:825 +msgid "repeat" +msgstr "repetir" -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: torque as in engine torque -#: taextras.py:335 -msgid "torque" -msgstr "torque" +#: TurtleArt/tabasics.py:826 +msgid "loops specified number of times" +msgstr "repite el número especificado de veces" -#: taextras.py:336 -msgid "speed" -msgstr "velocidad" +#: TurtleArt/tabasics.py:832 TurtleArt/tabasics.py:845 +msgid "if" +msgstr "si" -#: taextras.py:337 -msgid "" -"Motor torque and speed range from 0 (off) to positive numbers; motor is " -"placed on the most recent object created." -msgstr "" -"El torque y velocidad del motor están en el rango que va de 0 (apagado) a " -"números positivos; el motor es colocado en el objeto creado mas " -"recientemente." +#: TurtleArt/tabasics.py:832 TurtleArt/tabasics.py:845 +msgid "then" +msgstr "entonces" -#: taextras.py:340 -msgid "Pin an object down so that it cannot fall." -msgstr "Sujeta un objeto para que no se caiga." +#: TurtleArt/tabasics.py:835 +msgid "if then" +msgstr "si entonces" -# enPhysics es unión... podría ser articulación -#: taextras.py:341 -msgid "joint" -msgstr "unión" +#: TurtleArt/tabasics.py:837 +msgid "if-then operator that uses boolean operators from Numbers palette" +msgstr "operador si-entonces que usa operadores lógicos de la paleta de Números" -#: taextras.py:342 TurtleArt/tabasics.py:212 TurtleArt/tabasics.py:290 -msgid "x" -msgstr "x" +#: TurtleArt/tabasics.py:845 +msgid "else" +msgstr "sino" -#: taextras.py:343 TurtleArt/tabasics.py:212 TurtleArt/tabasics.py:290 -msgid "y" -msgstr "y" +#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:857 +msgid "if then else" +msgstr "si entonces sino" -#: taextras.py:344 -msgid "" -"Join two objects together (the most recent object created and the object at " -"point x, y)." +#: TurtleArt/tabasics.py:850 TurtleArt/tabasics.py:858 +msgid "if-then-else operator that uses boolean operators from Numbers palette" msgstr "" -"Une dos objetos (el objeto creado mas reciententemente y el objeto en el " -"punto x, y)." +"operador si-entonces-sino que usa operadores lógicos de la paleta de Números" -#: taextras.py:346 -msgid "save as Physics activity" -msgstr "guardar como Actividad Física" +#: TurtleArt/tabasics.py:867 +msgid "horizontal space" +msgstr "espacio horizontal" -#: taextras.py:347 -msgid "Save the project to the Journal as a Physics activity." -msgstr "Guarda el proyecto al Diario como una Actividad de Física." +#: TurtleArt/tabasics.py:868 +msgid "jogs stack right" +msgstr "desplaza la pila a la derecha" -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: Here, gear means a toothed wheel, as in a clock-works -#: taextras.py:349 -msgid "gear" -msgstr "círculo" +#: TurtleArt/tabasics.py:875 +msgid "vertical space" +msgstr "espacio vertical" -#: taextras.py:350 -msgid "Add a gear object to the project." -msgstr "Agrega un objeto engranaje al proyecto." +#: TurtleArt/tabasics.py:876 +msgid "jogs stack down" +msgstr "desplazar la pila abajo" -#: taextras.py:351 -msgid "density" -msgstr "densidad" +#: TurtleArt/tabasics.py:882 +msgid "stop action" +msgstr "parar acción" -#: taextras.py:352 -msgid "" -"Set the density property for objects (density can be any positive number)." -msgstr "" -"Establece la densidad de los objetos (la densidad puede ser cualquier número " -"positivo)." +#: TurtleArt/tabasics.py:885 +msgid "stops current action" +msgstr "detiene la acción actual" -#: taextras.py:354 -msgid "friction" -msgstr "fricción" +#: TurtleArt/tabasics.py:892 +msgid "blocks" +msgstr "bloques" -#: taextras.py:355 -msgid "" -"Set the friction property for objects (value from 0 to 1, where 0 turns " -"friction off and 1 is strong friction)." -msgstr "" -"Establece la propiedad de fricción de los objetos (un valor entre 0 y 1, " -"donde 0 es sin fricción y el 1 es fuerte)." +#: TurtleArt/tabasics.py:896 +msgid "Palette of variable blocks" +msgstr "Paleta de bloques de variables" -# podría ser elasticidad? -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: bounciness is coefficient of restitution -#: taextras.py:358 -msgid "bounciness" -msgstr "restitución" +#: TurtleArt/tabasics.py:901 pysamples/grecord.py:214 +msgid "start" +msgstr "empezar" -# very bouncy = muy restituible? -#: taextras.py:359 -msgid "" -"Set the bounciness property for objects (a value from 0 to 1, where 0 means " -"no bounce and 1 is very bouncy)." +#: TurtleArt/tabasics.py:904 +msgid "connects action to toolbar run buttons" msgstr "" -"Establece la propiedad de restitución para los objetos (un valor entre 0 y " -"1, donde 0 significa sin restitución y 1 mucha)." +"conecta la acción a los botones de ejecución de la barra de herramientas" -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: dynamic here means moving vs in a fixed position -#: taextras.py:362 -msgid "dynamic" -msgstr "dinámico" +#: TurtleArt/tabasics.py:911 TurtleArt/tabasics.py:912 +#: TurtleArt/tabasics.py:913 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:203 +msgid "text" +msgstr "texto" -#: taextras.py:363 -msgid "" -"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." -msgstr "" -"Si dinámico = 1, el objeto puede moverse; si dinámico = 0, queda fijo en su " -"posición." +#: TurtleArt/tabasics.py:914 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:183 +msgid "string value" +msgstr "valor de cadena" -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: WeDo is a robotics product of the LEGO company -#: taextras.py:369 -msgid "Palette of WeDo blocks" -msgstr "Paleta de bloques WeDo" +#: TurtleArt/tabasics.py:918 TurtleArt/tabasics.py:921 +#: TurtleArt/tabasics.py:929 TurtleArt/tabasics.py:933 +#: TurtleArt/tawindow.py:1496 TurtleArt/tawindow.py:1594 +#: TurtleArt/tawindow.py:1607 TurtleArt/tawindow.py:2227 +#: TurtleArt/tawindow.py:4575 +msgid "action" +msgstr "acción" -#: taextras.py:370 -msgid "WeDo" -msgstr "WeDo" +#: TurtleArt/tabasics.py:923 +msgid "top of nameable action stack" +msgstr "cima de la pila de acción nombrable" -#: taextras.py:371 -msgid "set current WeDo device" -msgstr "setea el dispositivo WeDo actual" +#: TurtleArt/tabasics.py:934 TurtleArt/tawindow.py:4589 +msgid "invokes named action stack" +msgstr "invocar la pila de acción nombrado" -#: taextras.py:372 -msgid "number of WeDo devices" -msgstr "número de dispositivos WeDo" +#: TurtleArt/tabasics.py:941 +msgid "store in box 1" +msgstr "guardar en caja 1" -#: taextras.py:373 -msgid "tilt" -msgstr "inclinación" +#: TurtleArt/tabasics.py:946 +msgid "stores numeric value in Variable 1" +msgstr "guarda valor numérico en la variable 1" -#: taextras.py:374 -msgid "" -"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " -"tilt left, 2 == tilt right)" -msgstr "" -"salida del sensor de inclinación: (-1 == no está inclinado, 0 == inclinado " -"hacia adelante, 3 == inclinado hacia atrás, 1 == inclinado hacia la " -"izquierda, 2 == inclinado hacia la derecha)" - -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: This string is shorthand for "output of the distance sensor" -#: taextras.py:378 -msgid "distance sensor output" -msgstr "salida del sensor distancia" - -#: taextras.py:379 -msgid "Motor A" -msgstr "Motor A" - -#: taextras.py:380 -msgid "returns the current value of Motor A" -msgstr "devuelve el valor actual del Motor A" - -#: taextras.py:381 -msgid "Motor B" -msgstr "Motor B" - -#: taextras.py:382 -msgid "returns the current value of Motor B" -msgstr "devuelve el valor actual del Motor B" - -#: taextras.py:383 -msgid "set the value for Motor A" -msgstr "setea el valor del Motor A" - -#: taextras.py:384 -msgid "set the value for Motor B" -msgstr "setea el valor del Motor B" - -#: taextras.py:385 -msgid "WeDo is unavailable" -msgstr "WeDo no está disponible" - -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 -#: taextras.py:387 -#, python-format -msgid "WeDo %d is unavailable; defaulting to 1" -msgstr "Wedo %d no está disponible; usando por defecto el 1" +#: TurtleArt/tabasics.py:955 +msgid "store in box 2" +msgstr "guardar en caja 2" -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: %(device)s and %(wedo_number)d are substitution strings; -#. please leave untranslated -#: taextras.py:390 -#, python-format -msgid "%(device)s is unavailable on WeDo %(wedo_number)d" -msgstr "%(device)s no está disponible en el WeDo %(wedo_number)d" +#: TurtleArt/tabasics.py:960 +msgid "stores numeric value in Variable 2" +msgstr "guarda valor numérico en la variable 2" -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: Lego NXT is a robotics product of the LEGO company -#: taextras.py:395 -msgid "Palette of LEGO NXT blocks of motors" -msgstr "Paleta de bloques LEGO NXT de motores" +#: TurtleArt/tabasics.py:969 +msgid "box 1" +msgstr "caja 1" -#: taextras.py:396 -msgid "Palette of LEGO NXT blocks of sensors" -msgstr "Paleta de bloques LEGO NXT de sensores" +#: TurtleArt/tabasics.py:972 +msgid "Variable 1 (numeric value)" +msgstr "Variable 1 (valor numérico)" -#: taextras.py:399 TurtleArt/tabasics.py:317 TurtleArt/tabasics.py:330 -#: TurtleArt/tabasics.py:388 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1132 -msgid "color" -msgstr "color" +#: TurtleArt/tabasics.py:979 +msgid "box 2" +msgstr "caja 2" -#: taextras.py:401 plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:206 -msgid "sound" -msgstr "sonido" +#: TurtleArt/tabasics.py:982 +msgid "Variable 2 (numeric value)" +msgstr "Variable 2 (valor numérico)" -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: The brick is the NXT controller -#: taextras.py:404 -msgid "Please check the connection with the brick" -msgstr "Por favor chequee la conexión con el brick" +#: TurtleArt/tabasics.py:988 TurtleArt/tawindow.py:4643 +msgid "store in" +msgstr "guardar en" -#: taextras.py:405 -#, python-format -msgid "Invalid port '%s'. Port must be: PORT A, B or C" -msgstr "Puerto '%s' inválido. El puerto debe ser: PUERTO A, B o C" +#: TurtleArt/tabasics.py:988 TurtleArt/tabasics.py:1004 +msgid "box" +msgstr "caja" -#: taextras.py:406 -#, python-format -msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" -msgstr "Puerto '%s' inválido. El puerto debe ser: PUERTO 1, 2, 3 o 4" +#: TurtleArt/tabasics.py:988 TurtleArt/tawindow.py:4643 +msgid "value" +msgstr "valor" -#: taextras.py:407 -msgid "The value of power must be between -127 to 127" -msgstr "El valor de potencia debe estar entre -127 y 127" +#: TurtleArt/tabasics.py:992 TurtleArt/tabasics.py:1007 +#: TurtleArt/tawindow.py:1500 TurtleArt/tawindow.py:1633 +#: TurtleArt/tawindow.py:2231 TurtleArt/tawindow.py:4604 +#: TurtleArt/tawindow.py:4634 +msgid "my box" +msgstr "mi caja" -#: taextras.py:408 -#, python-format -msgid "The parameter must be a integer, not '%s'" -msgstr "El parámetro debe ser un entero, no '%s'" +#: TurtleArt/tabasics.py:993 TurtleArt/tawindow.py:4648 +msgid "stores numeric value in named variable" +msgstr "guarda valor numérico en la variable nombrada" -#: taextras.py:409 -msgid "An error has occurred: check all connections and try to reconnect" -msgstr "Un error ha ocurrido: chequee todas las conexiones y pruebe reconectar" +#: TurtleArt/tabasics.py:1010 TurtleArt/tawindow.py:4618 +msgid "named variable (numeric value)" +msgstr "variable nombrado (valor numérico)" -#: taextras.py:410 -#, python-format -msgid "NXT found %s bricks" -msgstr "NXT encontró %s bricks" +#: TurtleArt/tabasics.py:1017 TurtleArt/tabasics.py:1036 +msgid "action 1" +msgstr "acción 1" -#: taextras.py:411 -msgid "NXT not found" -msgstr "NXT no encontrado" +#: TurtleArt/tabasics.py:1020 +msgid "top of Action 1 stack" +msgstr "primero de la pila de Acción 1" -#: taextras.py:412 -#, python-format -msgid "Brick number %s was not found" -msgstr "El brick número %s no fue encontrado" +#: TurtleArt/tabasics.py:1026 TurtleArt/tabasics.py:1046 +msgid "action 2" +msgstr "acción 2" -#: taextras.py:413 -msgid "nxt-motors" -msgstr "motores-nxt" +#: TurtleArt/tabasics.py:1029 +msgid "top of Action 2 stack" +msgstr "primero de la pila de Acción 2" -#: taextras.py:414 -msgid "refresh NXT" -msgstr "refrescar NXT" +#: TurtleArt/tabasics.py:1039 +msgid "invokes Action 1 stack" +msgstr "invocar la pila de acción 1" -#: taextras.py:415 -msgid "Search for a connected NXT brick." -msgstr "Busca por un brick NXT conectado." +#: TurtleArt/tabasics.py:1049 +msgid "invokes Action 2 stack" +msgstr "invocar la pila de acción 2" -#: taextras.py:416 -msgid "NXT" -msgstr "NXT" +#: TurtleArt/tabasics.py:1055 TurtleArt/tabasics.py:1059 +#: TurtleArt/tapalette.py:138 TurtleArt/tapalette.py:139 +msgid "trash" +msgstr "basura" -#: taextras.py:417 -msgid "set current NXT device" -msgstr "establece el dispositivo NXT actual" +#: TurtleArt/tabasics.py:1063 +msgid "empty trash" +msgstr "vaciar papelera" -#: taextras.py:418 -msgid "number of NXTs" -msgstr "número de NXTs" +#: TurtleArt/tabasics.py:1064 +msgid "permanently deletes items in trash" +msgstr "borra permanentemente elementos de la papelera" -#: taextras.py:419 -msgid "number of NXT devices" -msgstr "número de dispositivos NXT" +#: TurtleArt/tabasics.py:1068 +msgid "restore all" +msgstr "restaurar todo" -#: taextras.py:420 -msgid "brick name" -msgstr "nombre del brick" +#: TurtleArt/tabasics.py:1069 +msgid "restore all blocks from trash" +msgstr "restaura todos los bloques de la papelera" -#: taextras.py:421 -msgid "Get the name of a brick." -msgstr "Obtiene el nombre del brick." +#: TurtleArt/tabasics.py:1073 +msgid "clear all" +msgstr "borrar todos" -#: taextras.py:422 -msgid "play tone" -msgstr "reproducir tono" +#: TurtleArt/tabasics.py:1074 +msgid "move all blocks to trash" +msgstr "mueve todos los bloques a la basura" -#: taextras.py:423 -msgid "frequency" -msgstr "frecuencia" +#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:2205 +#: TurtleArtActivity.py:800 +msgid "Share selected blocks" +msgstr "Compartir bloques seleccionados" -#: taextras.py:424 plugins/turtle_blocks_extras/turtle_blocks_extras.py:429 -msgid "time" -msgstr "tiempo" +#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 +#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 +#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 +msgid "Title" +msgstr "Título" -#: taextras.py:425 -msgid "Play a tone at frequency for time." -msgstr "Reproduce un tono a cierta frecuencia por un determinado tiempo." +#: TurtleArt/talogo.py:374 TurtleArt/tawindow.py:1457 TurtleArtActivity.py:780 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1478 +msgid "Stop turtle" +msgstr "Parar tortuga" -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: turn is the action -#: taextras.py:427 -msgid "" -"turn motor\n" -"\n" -msgstr "" -"girar motor\n" -"\n" +#: TurtleArt/talogo.py:384 TurtleArtActivity.py:392 TurtleArtActivity.py:781 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1469 +msgid "Show blocks" +msgstr "Mostrar bloques" -#: taextras.py:428 -msgid "port" -msgstr "puerto" +#: TurtleArt/talogo.py:388 TurtleArtActivity.py:396 TurtleArtActivity.py:1066 +msgid "Hide blocks" +msgstr "Ocultar bloques" -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: rotations is quantity of turns -#: taextras.py:430 -msgid "rotations" -msgstr "rotaciones" +#: TurtleArt/talogo.py:513 +msgid "did not output to" +msgstr "no pudo escribir en" -#: taextras.py:431 -msgid "power" -msgstr "potencia" +#: TurtleArt/talogo.py:573 +msgid "I don't know how to" +msgstr "No sé como hacerlo" -#: taextras.py:432 -msgid "turn a motor" -msgstr "gira un motor" +#: TurtleArt/talogo.py:631 +msgid "doesn't like" +msgstr "no le gusta" -#: taextras.py:434 -msgid "" -"synchronize\n" -"\n" -"motors" -msgstr "" -"sincronizar\n" -"\n" -"motores" +#: TurtleArt/talogo.py:632 +msgid "as input" +msgstr "como entrada" -#: taextras.py:435 -msgid "steering" -msgstr "dirección" +#: TurtleArt/tapalette.py:98 +msgid "displays next palette" +msgstr "muestra la siguiente paleta" -#: taextras.py:436 -msgid "synchronize two motors connected in PORT B and PORT C" -msgstr "sincroniza dos motores conectados en el PUERTO B y PUERTO C" +#: TurtleArt/tapalette.py:99 +msgid "changes the orientation of the palette of blocks" +msgstr "cambia la orientación de la paleta de bloques" -#: taextras.py:437 -msgid "PORT A" -msgstr "PUERTO A" +#: TurtleArt/tautils.py:300 +msgid "Load..." +msgstr "Cargar..." -#: taextras.py:438 -msgid "PORT A of the brick" -msgstr "PUERTO A del brick" +#: TurtleArt/tautils.py:310 +msgid "Save..." +msgstr "Guardar..." -#: taextras.py:439 -msgid "PORT B" -msgstr "PUERTO B" +#: TurtleArt/tautils.py:593 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:748 +msgid "click to open" +msgstr "clic para abrir" -#: taextras.py:440 -msgid "PORT B of the brick" -msgstr "PUERTO B del brick" +#: TurtleArt/tawindow.py:1142 TurtleArt/tawindow.py:1143 +msgid "orientation" +msgstr "orientación" -#: taextras.py:441 -msgid "PORT C" -msgstr "PUERTO C" +#: TurtleArt/tawindow.py:1157 TurtleArt/tawindow.py:1790 +msgid "next" +msgstr "siguiente" -#: taextras.py:442 -msgid "PORT C of the brick" -msgstr "PUERTO C del brick" +#: TurtleArt/tawindow.py:1196 TurtleArt/tawindow.py:1811 +msgid "shift" +msgstr "desplazar" -#: taextras.py:443 -msgid "" -"synchronize\n" -"motors" -msgstr "" -"sincronizar\n" -"motores" +#: TurtleArt/tawindow.py:1461 +msgid "Please hit the Stop Button before making changes to your program" +msgstr "Por favor, pulsa el Botón Detener antes de hacer cambios a tu programa" -#: taextras.py:444 -msgid "start motor" -msgstr "iniciar motor" +#: TurtleArt/tawindow.py:1514 +msgid "Select blocks to share" +msgstr "Selecciona bloques para compartir" -#: taextras.py:445 -msgid "Run a motor forever." -msgstr "Girar un motor por siempre." +#: TurtleArt/tawindow.py:1678 TurtleArtActivity.py:677 +#: TurtleArtActivity.py:830 turtleblocks.py:435 +msgid "Save stack" +msgstr "Guardar pila" -#: taextras.py:446 -msgid "brake motor" -msgstr "frenar motor" +#: TurtleArt/tawindow.py:1679 TurtleArt/tawindow.py:1693 +msgid "Really overwrite stack?" +msgstr "¿Desea sobrescribir la pila?" -#: taextras.py:447 -msgid "Stop a specified motor." -msgstr "Frena un motor específico." +#: TurtleArt/tawindow.py:1682 TurtleArt/tawindow.py:1721 +#: gnome_plugins/uploader_plugin.py:144 +msgid "Cancel" +msgstr "Cancelar" -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: reset is used to reset the counter associated with the motor -#: taextras.py:449 -msgid "reset motor" -msgstr "reiniciar motor" +#: TurtleArt/tawindow.py:1686 TurtleArt/tawindow.py:1696 +msgid "Overwrite stack" +msgstr "Sobrescribir pila" -#: taextras.py:450 -msgid "Reset the motor counter." -msgstr "Reinicia el contador del motor." +#: TurtleArt/tawindow.py:1717 TurtleArt/tawindow.py:1725 +#: TurtleArt/tawindow.py:1734 TurtleArtActivity.py:679 turtleblocks.py:437 +msgid "Delete stack" +msgstr "Borrar pila" -#: taextras.py:451 -msgid "motor position" -msgstr "posición del motor" +#: TurtleArt/tawindow.py:1718 TurtleArt/tawindow.py:1731 +msgid "Really delete stack?" +msgstr "¿Desea eliminar la pila?" -#: taextras.py:452 -msgid "Get the motor position." -msgstr "Obtiene la posición del motor." +#: TurtleArt/tawindow.py:4424 +msgid "image" +msgstr "imagen" -#: taextras.py:453 -msgid "nxt-sensors" -msgstr "sensores-nxt" +#: TurtleArtActivity.py:207 TurtleArtActivity.py:806 TurtleArtActivity.py:989 +#: TurtleArtActivity.py:1025 turtleblocks.py:408 +msgid "Save as Logo" +msgstr "Guardar como Logo" -#: taextras.py:454 -msgid "PORT 1" -msgstr "PUERTO 1" +#: TurtleArtActivity.py:264 TurtleArtActivity.py:805 TurtleArtActivity.py:986 +#: TurtleArtActivity.py:1022 turtleblocks.py:406 +msgid "Save as image" +msgstr "Guardar como imagen" -#: taextras.py:455 -msgid "PORT 1 of the brick" -msgstr "PUERTO 1 del brick" +#: TurtleArtActivity.py:272 +msgid "snapshot" +msgstr "instantánea" -#: taextras.py:456 -msgid "read" -msgstr "leer" +#: TurtleArtActivity.py:280 TurtleArtActivity.py:740 TurtleArtActivity.py:782 +#: TurtleArtActivity.py:995 TurtleArtActivity.py:1028 +msgid "Save snapshot" +msgstr "Guardar instantánea" -#: taextras.py:457 plugins/turtle_blocks_extras/turtle_blocks_extras.py:309 -msgid "sensor" -msgstr "sensor" +#: TurtleArtActivity.py:325 TurtleArtActivity.py:702 TurtleArtActivity.py:857 +msgid "Turn off hover help" +msgstr "Deshabilitar ayuda flotante" -#: taextras.py:458 -msgid "Read sensor output." -msgstr "Lee la salida del sensor." - -#: taextras.py:459 -msgid "PORT 2" -msgstr "PUERTO 2" - -#: taextras.py:460 -msgid "PORT 2 of the brick" -msgstr "PUERTO 2 del brick" - -#: taextras.py:461 -msgid "light sensor" -msgstr "sensor de luz" - -#: taextras.py:462 -msgid "gray sensor" -msgstr "sensor de grises" - -#: taextras.py:463 -msgid "PORT 3" -msgstr "PUERTO 3" - -#: taextras.py:464 -msgid "PORT 3 of the brick" -msgstr "PUERTO 3 del brick" - -#: taextras.py:465 -msgid "button sensor" -msgstr "sensor botón" - -#: taextras.py:466 -msgid "distance sensor" -msgstr "sensor de distancia" - -#: taextras.py:467 -msgid "PORT 4" -msgstr "PUERTO 4" - -#: taextras.py:468 -msgid "PORT 4 of the brick" -msgstr "PUERTO 4 del brick" - -#: taextras.py:469 -msgid "sound sensor" -msgstr "sensor de sonido" - -#: taextras.py:470 -msgid "color sensor" -msgstr "sensor de color" - -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: set light is used to set the light level associated with -#. the color sensor (which can emit light as well as sense it) -#: taextras.py:473 -msgid "set light" -msgstr "prender luz" - -#: taextras.py:474 -msgid "Set color sensor light." -msgstr "Prende la luz del sensor de color." - -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: the battery level is the charge level of the brick -#: taextras.py:476 -msgid "battery level" -msgstr "nivel de batería" - -#: taextras.py:477 -msgid "Get the battery level of the brick in millivolts" -msgstr "Obtiene el nivel de batería del brick en milivolts." - -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: Arduino plugin to control an Arduino board -#: taextras.py:482 -msgid "Palette of Arduino blocks" -msgstr "Paleta de bloques Arduino" - -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: PWM is pulse-width modulation -#: taextras.py:488 -msgid "PWM" -msgstr "PWM" - -#: taextras.py:489 -msgid "SERVO" -msgstr "SERVO" - -#: taextras.py:490 -msgid "ERROR: Check the Arduino and the number of port." -msgstr "ERROR: Chequee la Arduino y el número de puerto." - -#: taextras.py:491 -msgid "ERROR: Value must be a number from 0 to 255." -msgstr "ERROR: El valor debe ser un número entre 0 y 255." - -#: taextras.py:492 -msgid "ERROR: Value must be either HIGH or LOW, 0 or 1" -msgstr "ERROR: El valor debe ser ALTO o BAJO, 0 o 1" - -#: taextras.py:493 -msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." -msgstr "ERROR: El modo debe ser ENTRADA, SALIDA, PWM o SERVO." - -#: taextras.py:494 -msgid "ERROR: The value must be an integer." -msgstr "ERROR: El valor debe ser un entero." - -#: taextras.py:495 -msgid "ERROR: The pin must be an integer." -msgstr "ERROR: El pin debe ser un entero." - -#: taextras.py:496 -msgid "arduino" -msgstr "arduino" - -#: taextras.py:497 -msgid "refresh Arduino" -msgstr "refrescar Arduino" - -#: taextras.py:498 -msgid "Search for connected Arduinos." -msgstr "Busca por Arduinos conectadas." - -#: taextras.py:499 -msgid "Arduino" -msgstr "Arduino" - -#: taextras.py:500 -msgid "set current Arduino board" -msgstr "establece la placa Arduino actual" - -#: taextras.py:501 -msgid "number of Arduinos" -msgstr "número de Arduinos" - -#: taextras.py:502 -msgid "number of Arduino boards" -msgstr "número de placas" - -#: taextras.py:503 -msgid "Arduino name" -msgstr "nombre de Arduino" - -#: taextras.py:504 -msgid "Get the name of an Arduino." -msgstr "Obtiene el nombre de la Arduino." - -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) -#. in which an I/O pin is being used. -#: taextras.py:507 -msgid "pin mode" -msgstr "modo del pin" - -#: taextras.py:510 -msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." -msgstr "Selecciona la función del pin (ENTRADA, SALIDA, PWM, SERVO)." - -#: taextras.py:511 -msgid "analog write" -msgstr "escribir analógico" - -#: taextras.py:513 -msgid "Write analog value in specified port." -msgstr "Escribe un valor analógico en el puerto especificado." - -#: taextras.py:514 -msgid "analog read" -msgstr "leer analógico" - -#: taextras.py:515 -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 "" -"Lee un valor desde un puerto analógico. El valor puede ser entre 0 y 1023. " -"Use Vref para determinar el voltaje. Para USB, volt=((leer)*5/1024) " -"aproximadamente." +#: TurtleArtActivity.py:334 turtleblocks.py:428 +msgid "Turn on hover help" +msgstr "Habilitar ayuda flotante" -#: taextras.py:517 -msgid "digital write" -msgstr "escribir digital" +#: TurtleArtActivity.py:344 turtleblocks.py:442 +msgid "Show palette" +msgstr "Mostrar paleta" -#: taextras.py:518 -msgid "Write digital value to specified port." -msgstr "Escribe un valor digital en un puerto específico." +#: TurtleArtActivity.py:350 TurtleArtActivity.py:1054 turtleblocks.py:444 +msgid "Hide palette" +msgstr "Ocultar paleta" -#: taextras.py:519 -msgid "digital read" -msgstr "leer digital" +#: TurtleArtActivity.py:518 +msgid "Rescale coordinates down" +msgstr "Escalar coordenadas hacia abajo" -#: taextras.py:520 -msgid "Read value from digital port." -msgstr "Lee un valor desde un puerto digital." +#: TurtleArtActivity.py:527 TurtleArtActivity.py:693 TurtleArtActivity.py:853 +msgid "Rescale coordinates up" +msgstr "Escalar coordenadas hacia arriba" -#: taextras.py:521 -msgid "Set HIGH value for digital port." -msgstr "Setea el valor ALTO en el puerto digital." +#: TurtleArtActivity.py:625 TurtleArtActivity.py:660 TurtleArtActivity.py:774 +#: TurtleArtActivity.py:827 turtleblocks.py:439 +msgid "Edit" +msgstr "Editar" -#: taextras.py:522 -msgid "Configure Arduino port for digital input." -msgstr "Configura el puerto de la Arduino como entrada digital." +#: TurtleArtActivity.py:630 TurtleArtActivity.py:658 TurtleArtActivity.py:775 +#: TurtleArtActivity.py:845 turtleblocks.py:430 +msgid "View" +msgstr "Ver" -#: taextras.py:523 -msgid "Configure Arduino port to drive a servo." -msgstr "Configura el puerto de la Arduino para manejar un servo." +#: TurtleArtActivity.py:656 TurtleArtActivity.py:776 +msgid "Project" +msgstr "Proyecto" -#: taextras.py:525 -msgid "Configure Arduino port for digital output." -msgstr "Configura el puerto de la Arduino como salida digital." +#: TurtleArtActivity.py:662 TurtleArtActivity.py:773 TurtleArtActivity.py:802 +#: TurtleArtActivity.py:804 TurtleArtActivity.py:981 +msgid "Save/Load" +msgstr "Guardar/Cargar" -#: taextras.py:526 -msgid "Configure Arduino port for PWM (pulse-width modulation)." -msgstr "" -"Configura el puerto de la Arduino para PWM modulación por ancho de pulsos)." +#: TurtleArtActivity.py:670 TurtleArtActivity.py:828 turtleblocks.py:433 +msgid "Copy" +msgstr "Copiar" -#: taextras.py:527 -#, python-format -msgid "Not found Arduino %s" -msgstr "No se encontró Arduino %s" - -#: taextras.py:528 -msgid "The pin must be an integer" -msgstr "El pin debe ser un entero" - -#: taextras.py:529 -msgid "The device must be an integer" -msgstr "El número de dispositivo debe ser un entero" - -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: plugin to control an ExpEyes device -#: taextras.py:534 -msgid "Palette of Expeyes blocks" -msgstr "Paleta de bloques de Expeyes" - -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: Programmable voltage output -#: taextras.py:536 -msgid "set PVS" -msgstr "establecer PVS" - -#: taextras.py:537 -msgid "set programmable voltage output" -msgstr "establece el voltaje de salida programable" - -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: Square wave 1 voltage output -#: taextras.py:539 -msgid "set SQR1 voltage" -msgstr "establecer voltaje SQR1" - -#: taextras.py:540 -msgid "set square wave 1 voltage output" -msgstr "establece una onda cuadrada en el voltaje de salida" - -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: Square wave 2 voltage output -#: taextras.py:542 -msgid "set SQR2 voltage" -msgstr "establecer voltaje SQR2" - -#: taextras.py:543 -msgid "set square wave 2 voltage output" -msgstr "establece una onda cuadrada en el voltaje de salida" - -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: Digital output level -#: taextras.py:545 -msgid "set OD1" -msgstr "establecer OD1" - -#: taextras.py:546 -msgid "set digital output level (OD1) low (0) or high (1)" -msgstr "establece el nivel de la salida digital (OD1) bajo (0) o alto (1)" - -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: Input 1 voltage level -#: taextras.py:548 -msgid "IN1 level" -msgstr "nivel IN1" - -#: taextras.py:549 -msgid "" -"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " -"volts" -msgstr "" -"devuelve 1 si el voltaje de IN1 es mayor a 2,5 volts, 0 si el voltaje es <= " -"2,5 volts" +#: TurtleArtActivity.py:672 TurtleArtActivity.py:829 turtleblocks.py:434 +msgid "Paste" +msgstr "Pegar" -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: Input 2 voltage level -#: taextras.py:552 -msgid "IN2 level" -msgstr "nivel IN2" +#: TurtleArtActivity.py:674 +msgid "Restore blocks from trash" +msgstr "Restaura los bloques de la papelera" -#: taextras.py:553 -msgid "" -"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " -"volts" -msgstr "" -"devuelve 1 si el voltaje de IN2 es mayor a 2,5 volts, 0 si el voltaje es <= " -"2,5 volts" +#: TurtleArtActivity.py:682 TurtleArtActivity.py:846 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:829 +msgid "Fullscreen" +msgstr "Pantalla completa" -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: Resistive sensor voltage level -#: taextras.py:556 -msgid "SEN level" -msgstr "nivel SEN" +#: TurtleArtActivity.py:685 TurtleArtActivity.py:847 turtleblocks.py:414 +msgid "Cartesian coordinates" +msgstr "Coordenadas cartesianas" -#: taextras.py:557 -msgid "" -"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " -"voltage level <= 2.5 volts" -msgstr "" -"devuelve 1 si el voltaje del sensor resistivo (SEN) es mayor a 2,5 volts, 0 " -"si el voltaje es <= 2,5 volts" +#: TurtleArtActivity.py:687 TurtleArtActivity.py:849 turtleblocks.py:416 +msgid "Polar coordinates" +msgstr "Coordenadas polares" -#: taextras.py:559 -msgid "capture" -msgstr "capturar" +#: TurtleArtActivity.py:690 TurtleArtActivity.py:851 +msgid "Metric coordinates" +msgstr "Coordenadas centímetros" -#: taextras.py:560 -msgid "input" -msgstr "entrada" +#: TurtleArtActivity.py:696 TurtleArtActivity.py:855 turtleblocks.py:421 +msgid "Grow blocks" +msgstr "Agrandar bloques" -#: taextras.py:561 -msgid "samples" -msgstr "muestras" +#: TurtleArtActivity.py:699 TurtleArtActivity.py:856 turtleblocks.py:423 +msgid "Shrink blocks" +msgstr "Empequeñecer bloques" -#: taextras.py:562 -msgid "interval" -msgstr "intervalo" +#: TurtleArtActivity.py:727 TurtleArtActivity.py:744 TurtleArtActivity.py:783 +#: TurtleArtActivity.py:999 +msgid "Load example" +msgstr "Cargar ejemplos" -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: MS is microseconds -#: taextras.py:564 -msgid "" -"capture multiple samples from input at interval (MS); results pushed to FIFO" -msgstr "" -"captura múltiples muestras de la entrada en intervalos (MS); los resultados " -"son puestos en FIFO" - -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: Analog input 1 voltage level -#: taextras.py:567 -msgid "A1" -msgstr "A1" - -#: taextras.py:568 -msgid "read analog input 1 voltage" -msgstr "lee el voltaje de la entrada analógica 1" - -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: Analog input 2 voltage level -#: taextras.py:570 -msgid "A2" -msgstr "A2" - -#: taextras.py:571 -msgid "read analog input 2 voltage" -msgstr "lee el voltaje de la entrada analógica 2" - -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: Read input 1 voltage -#: taextras.py:573 -msgid "IN1" -msgstr "IN1" - -#: taextras.py:574 -msgid "read input 1 voltage" -msgstr "lee el voltaje de la entrada 1" - -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: Read input 2 voltage -#: taextras.py:576 -msgid "IN2" -msgstr "IN2" - -#: taextras.py:577 -msgid "read input 2 voltage" -msgstr "lee el voltaje de la entrada 2" - -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: Read analog sensor input voltage -#: taextras.py:579 -msgid "SEN" -msgstr "SEN" - -#: taextras.py:580 -msgid "read analog sensor input voltage" -msgstr "lee el voltaje de entrada del sensor analógico" - -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: Read square wave 1 input voltage -#: taextras.py:582 -msgid "SQR1" -msgstr "SQR1" - -#: taextras.py:583 -msgid "read square wave 1 voltage" -msgstr "lee el voltaje de la onda cuadrada 1" - -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: Read square wave 2 input voltage -#: taextras.py:585 -msgid "SQR2" -msgstr "SQR2" - -#: taextras.py:586 -msgid "read square wave 2 voltage" -msgstr "lee el voltaje de la onda cuadrada 2" - -#. TRANS: Read programmable voltage -#: taextras.py:588 -msgid "PVS" -msgstr "PVS" - -#: taextras.py:589 -msgid "read programmable voltage" -msgstr "leer voltaje programable" - -#: taextras.py:590 -msgid "Expeyes device not found" -msgstr "El dispositivo Expeyes no fue encontrado" +#: TurtleArtActivity.py:777 TurtleArtActivity.py:1060 turtleblocks.py:451 +msgid "Clean" +msgstr "Limpiar" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281 -msgid "resume playing video or audio" -msgstr "reanudar la reproducción de video o audio" +#: TurtleArtActivity.py:778 TurtleArtActivity.py:1062 turtleblocks.py:452 +msgid "Run" +msgstr "Ejecutar" -#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 -#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 -#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 -msgid "Title" -msgstr "Título" +#: TurtleArtActivity.py:779 TurtleArtActivity.py:1064 turtleblocks.py:453 +msgid "Step" +msgstr "Dar un paso" -#: plugins/camera_sensor/camera_sensor.py:95 -#: plugins/camera_sensor/camera_sensor.py:143 -msgid "Average RGB color from camera is pushed to the stack" -msgstr "Promedio de color RGB de la cámara se desplaza a la pila" +#: TurtleArtActivity.py:784 turtleblocks.py:460 util/helpbutton.py:44 +msgid "Help" +msgstr "Ayuda" -#: TurtleArt/tabasics.py:519 -msgid "yellow" -msgstr "amarillo" +#: TurtleArtActivity.py:785 turtleblocks.py:455 +msgid "Stop" +msgstr "Parar" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:670 -msgid "displays polar coordinates" -msgstr "muestra las coordenadas polares" +#: TurtleArtActivity.py:807 TurtleArtActivity.py:1008 +#: TurtleArtActivity.py:1030 turtleblocks.py:403 +msgid "Load project" +msgstr "Cargar proyecto" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:478 -msgid "emptys FILO (first-in-last-out heap)" -msgstr "vacía la pila FILO (primera-en-entrar último-en-salir)" +#: TurtleArtActivity.py:810 TurtleArtActivity.py:1013 +#: TurtleArtActivity.py:1035 +msgid "Load plugin" +msgstr "Cargar plugin" -#: plugins/camera_sensor/camera_sensor.py:106 -#: plugins/camera_sensor/camera_sensor.py:113 -#: plugins/camera_sensor/camera_sensor.py:121 -#: plugins/camera_sensor/camera_sensor.py:155 -#: plugins/camera_sensor/camera_sensor.py:163 -msgid "camera output" -msgstr "imagen de la cámara" +#: TurtleArtActivity.py:811 TurtleArtActivity.py:1016 +#: TurtleArtActivity.py:1038 +msgid "Load Python block" +msgstr "Cargar bloque Python" -#: plugins/accelerometer/accelerometer.py:58 -#: plugins/accelerometer/accelerometer.py:65 -msgid "push acceleration in x, y, z to heap" -msgstr "pone la aceleración en los ejes x, y z en la pila" +#: TurtleArtActivity.py:958 +msgid "Palettes" +msgstr "Paletas" -#: TurtleArt/tabasics.py:837 -msgid "if-then operator that uses boolean operators from Numbers palette" -msgstr "" -"operador si-entonces que usa operadores lógicos de la paleta de Números" +#: TurtleArtActivity.py:976 +msgid "Sharing blocks disabled" +msgstr "Compartir bloques deshabilitado" -#: TurtleArt/tabasics.py:868 -msgid "jogs stack right" -msgstr "desplaza la pila a la derecha" +#: TurtleArtActivity.py:1005 turtleblocks.py:402 +msgid "Open" +msgstr "Abrir" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:135 -msgid "Sugar Journal media object" -msgstr "objeto de medios del Diario de Sugar" +#: TurtleArtActivity.py:1055 +msgid "p" +msgstr "p" -#: TurtleArt/tabasics.py:979 -msgid "box 2" -msgstr "caja 2" +#: TurtleArtActivity.py:1060 +msgid "e" +msgstr "e" -#: TurtleArt/tabasics.py:969 -msgid "box 1" -msgstr "caja 1" +#: TurtleArtActivity.py:1062 +msgid "r" +msgstr "r" -#: TurtleArtActivity.py:779 TurtleArtActivity.py:1064 turtleblocks.py:453 -msgid "Step" -msgstr "Dar un paso" +#: TurtleArtActivity.py:1064 +msgid "w" +msgstr "w" -#: TurtleArt/tabasics.py:644 -msgid "multiplies two numeric inputs" -msgstr "multiplica dos entradas numéricas" +#: TurtleArtActivity.py:1067 +msgid "s" +msgstr "s" -#: turtleblocks.py:446 -msgid "Show/hide blocks" -msgstr "Mostar/ocultar bloques" +#: TurtleArtActivity.py:1228 TurtleArtActivity.py:1233 +#: TurtleArtActivity.py:1313 +msgid "Plugin could not be installed." +msgstr "El plugin no puede ser instalado." -#: TurtleArtActivity.py:350 TurtleArtActivity.py:1054 turtleblocks.py:444 -msgid "Hide palette" -msgstr "Ocultar paleta" +#: TurtleArtActivity.py:1309 +msgid "Please restart Turtle Art in order to use the plugin." +msgstr "Reinicie TortugArte para poder usar el plugin." -#: gnome_plugins/collaboration_plugin.py:121 -msgid "Buddies" -msgstr "Amigos" +#: TurtleArtActivity.py:1327 +#, python-format +msgid "Plugin %s already installed." +msgstr "El plugin %s ya se encuentra instalado." + +#: TurtleArtActivity.py:1328 +#, python-format +msgid "Do you want to reinstall %s?" +msgstr "¿Desea reinstalar %s?" #: gnome_plugins/collaboration_plugin.py:64 msgid "My Turtle Art session" msgstr "Mi sesión de TortugArte" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:159 -msgid "Sugar Journal video object" -msgstr "objeto de video del Diario de Sugar" +#: gnome_plugins/collaboration_plugin.py:111 +msgid "Enable collaboration" +msgstr "Permitir la colaboración" -#: TurtleArt/tabasics.py:522 -msgid "cyan" -msgstr "cian" +#: gnome_plugins/collaboration_plugin.py:116 +msgid "Activities" +msgstr "Actividades" -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: "summary" option from activity.info file -#. TRANS: "description" option from activity.info file +#: gnome_plugins/collaboration_plugin.py:121 +msgid "Buddies" +msgstr "Amigos" + +#: gnome_plugins/collaboration_plugin.py:124 +msgid "Share" +msgstr "Compartir" + +#: gnome_plugins/collaboration_plugin.py:125 +msgid "Configuration" +msgstr "Configuración" + +#: gnome_plugins/collaboration_plugin.py:128 +msgid "Neighborhood" +msgstr "Vecindario" + +#: gnome_plugins/collaboration_plugin.py:289 +msgid "Nickname" +msgstr "Apodo" + +#: gnome_plugins/collaboration_plugin.py:291 +msgid "Account ID" +msgstr "Cuenta" + +#: gnome_plugins/collaboration_plugin.py:293 +msgid "Server" +msgstr "Servidor" + +#: gnome_plugins/collaboration_plugin.py:295 +msgid "Port" +msgstr "Puerto" + +#: gnome_plugins/collaboration_plugin.py:297 +msgid "Password" +msgstr "Contraseña" + +#: gnome_plugins/collaboration_plugin.py:299 +msgid "Register" +msgstr "Registro" + +#: gnome_plugins/collaboration_plugin.py:301 +msgid "Colors" +msgstr "Colores" + +#: gnome_plugins/fb_plugin.py:82 gnome_plugins/fb_plugin.py:83 +#: gnome_plugins/fb_plugin.py:92 gnome_plugins/uploader_plugin.py:63 +#: gnome_plugins/uploader_plugin.py:64 gnome_plugins/uploader_plugin.py:73 +msgid "Upload" +msgstr "Cargar" + +#: gnome_plugins/fb_plugin.py:87 +msgid "Facebook wall post" +msgstr "Muro de Facebook" + +#: gnome_plugins/uploader_plugin.py:68 +msgid "Upload to Web" +msgstr "Enviar a la Web" + +#: gnome_plugins/uploader_plugin.py:90 msgid "" -"A Logo-inspired turtle that draws colorful pictures with snap-together " -"visual programming blocks" +"You must have an account at http://turtleartsite.sugarlabs.org to upload " +"your project." msgstr "" -"Una tortuga inspirada en Logo que hace dibujos coloridos junto con bloques " -"complementarios de programación visual" +"Debe contar con una cuenta en http://turtleartsite.sugarlabs.org para bajar " +"su proyecto." -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:921 -msgid "xcor of right of screen" -msgstr "xcor del lado derecho de la pantalla" +#: gnome_plugins/uploader_plugin.py:99 +msgid "Username:" +msgstr "Usuario:" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:442 -msgid "Palette of extra options" -msgstr "Paleta de opciones adicionales" +#: gnome_plugins/uploader_plugin.py:109 +msgid "Password:" +msgstr "Contraseña:" -#: TurtleArtActivity.py:727 TurtleArtActivity.py:744 TurtleArtActivity.py:783 -#: TurtleArtActivity.py:999 -msgid "Load example" -msgstr "Cargar ejemplos" +#: gnome_plugins/uploader_plugin.py:120 +msgid "Title:" +msgstr "Título:" -#: TurtleArt/tabasics.py:1074 -msgid "move all blocks to trash" -msgstr "mueve todos los bloques a la basura" +#: gnome_plugins/uploader_plugin.py:130 +msgid "Description:" +msgstr "Descripción:" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840 -msgid "list" -msgstr "lista" +#: gnome_plugins/uploader_plugin.py:140 +msgid "Submit to Web" +msgstr "Enviar a la Web" -#: turtleblocks.py:321 -#, python-format -msgid "Configuration directory not writable: %s" -msgstr "Directorio de configuración no modificable: %s" +#: gnome_plugins/uploader_plugin.py:166 +msgid "Login failed" +msgstr "Error de autentificación" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:279 -msgid "media resume" -msgstr "continuar medios" +#: gnome_plugins/uploader_plugin.py:203 +msgid "Failed to upload!" +msgstr "¡Error al descargar!" -#: TurtleArt/tabasics.py:270 TurtleArt/tawindow.py:4302 -msgid "heading" -msgstr "rumbo" +#: plugins/accelerometer/accelerometer.py:49 +#: plugins/audio_sensors/audio_sensors.py:75 +#: plugins/camera_sensor/camera_sensor.py:63 +#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:313 +msgid "Palette of sensor blocks" +msgstr "Paleta de bloques sensor" -#: TurtleArtActivity.py:976 -msgid "Sharing blocks disabled" -msgstr "Compartir bloques deshabilitado" +#: plugins/accelerometer/accelerometer.py:56 +#: plugins/accelerometer/accelerometer.py:63 +msgid "acceleration" +msgstr "acelerómetro" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:241 -msgid "saves turtle graphics as an SVG file in the Sugar Journal" +#: plugins/accelerometer/accelerometer.py:58 +#: plugins/accelerometer/accelerometer.py:65 +msgid "push acceleration in x, y, z to heap" +msgstr "pone la aceleración en los ejes x, y z en la pila" + +#: plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:206 +msgid "sound" +msgstr "sonido" + +#: plugins/audio_sensors/audio_sensors.py:84 +#: plugins/audio_sensors/audio_sensors.py:99 +msgid "raw microphone input signal" +msgstr "señal de entrada de micrófono" + +#: plugins/audio_sensors/audio_sensors.py:90 +#: plugins/audio_sensors/audio_sensors.py:105 +msgid "loudness" +msgstr "volumen" + +#: plugins/audio_sensors/audio_sensors.py:91 +#: plugins/audio_sensors/audio_sensors.py:106 +msgid "microphone input volume" +msgstr "volumen de entrada de micrófono" + +#: plugins/audio_sensors/audio_sensors.py:119 +#: plugins/audio_sensors/audio_sensors.py:127 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:298 +msgid "pitch" +msgstr "frecuencia" + +#: plugins/audio_sensors/audio_sensors.py:120 +#: plugins/audio_sensors/audio_sensors.py:128 +msgid "microphone input pitch" msgstr "" -"guarda los gráficos de la tortuga como un archivo SVG en el Diario de Azúcar" +"frecuencia de la componente más intensa del sonido presente en la entrada de " +"micrófono" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:192 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:206 -msgid "draws text or show media from the Journal" -msgstr "dibujar texto o mostrar medios desde el Diario" +#: plugins/audio_sensors/audio_sensors.py:151 +#: plugins/audio_sensors/audio_sensors.py:165 +#: plugins/audio_sensors/audio_sensors.py:179 +#: plugins/audio_sensors/audio_sensors.py:193 +msgid "resistance" +msgstr "resistencia" + +#: plugins/audio_sensors/audio_sensors.py:152 +#: plugins/audio_sensors/audio_sensors.py:166 +#: plugins/audio_sensors/audio_sensors.py:180 +#: plugins/audio_sensors/audio_sensors.py:194 +msgid "microphone input resistance" +msgstr "" +"valor de la resistencia conectada a la entrada de micrófono (rango de " +"medición: 700 a 14000 ohms)" + +#: plugins/audio_sensors/audio_sensors.py:157 +#: plugins/audio_sensors/audio_sensors.py:171 +#: plugins/audio_sensors/audio_sensors.py:185 +#: plugins/audio_sensors/audio_sensors.py:199 +msgid "voltage" +msgstr "voltaje" + +#: plugins/audio_sensors/audio_sensors.py:158 +#: plugins/audio_sensors/audio_sensors.py:172 +#: plugins/audio_sensors/audio_sensors.py:186 +#: plugins/audio_sensors/audio_sensors.py:200 +msgid "microphone input voltage" +msgstr "" +"valor del voltaje DC conectado a la entrada de micrófono (rango: 0.40 a 1.90 " +"V)" + +#: plugins/camera_sensor/camera_sensor.py:67 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127 +msgid "Palette of media objects" +msgstr "Paleta de bloques medios" + +#: plugins/camera_sensor/camera_sensor.py:80 +#: plugins/camera_sensor/camera_sensor.py:93 +#: plugins/camera_sensor/camera_sensor.py:128 +#: plugins/camera_sensor/camera_sensor.py:141 +#: plugins/light_sensor/light_sensor.py:56 +#: plugins/light_sensor/light_sensor.py:63 +msgid "brightness" +msgstr "brillo" + +#: plugins/camera_sensor/camera_sensor.py:82 +#: plugins/camera_sensor/camera_sensor.py:130 +msgid "light level detected by camera" +msgstr "nivel de luz detectado por la cámara" + +#: plugins/camera_sensor/camera_sensor.py:95 +#: plugins/camera_sensor/camera_sensor.py:143 +msgid "Average RGB color from camera is pushed to the stack" +msgstr "Promedio de color RGB de la cámara se desplaza a la pila" + +#: plugins/camera_sensor/camera_sensor.py:106 +#: plugins/camera_sensor/camera_sensor.py:113 +#: plugins/camera_sensor/camera_sensor.py:121 +#: plugins/camera_sensor/camera_sensor.py:155 +#: plugins/camera_sensor/camera_sensor.py:163 +msgid "camera output" +msgstr "imagen de la cámara" + +#: plugins/light_sensor/light_sensor.py:58 +#: plugins/light_sensor/light_sensor.py:65 +msgid "light level detected by light sensor" +msgstr "nivel de luz detectado por el sensor" # Se utilizan las siglas en inglés para "Identificación por Radio Frecuencia" #: plugins/rfid/rfid.py:92 plugins/rfid/rfid.py:100 msgid "RFID" msgstr "RFID" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:157 -msgid "video" -msgstr "video" +#: plugins/rfid/rfid.py:93 plugins/rfid/rfid.py:101 +msgid "read value from RFID device" +msgstr "leer el valor del dispositivo de radiofrecuencia (RFID)" -#: TurtleArt/tabasics.py:523 -msgid "blue" -msgstr "azul" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:96 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:99 +msgid "while" +msgstr "mientras" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662 -msgid "displays Cartesian coordinates" -msgstr "muestra coordenadas cartesianas" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:100 +msgid "do-while-True operator that uses boolean operators from Numbers palette" +msgstr "" +"se ejecuta la serie de acciones siguientes al bloque mientras se cumpla la " +"condición fijada al comienzo del mismo" -#: turtleblocks.py:282 -msgid "No option action:" -msgstr "Sin acción alternativa:" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:109 +msgid "until" +msgstr "hasta" -#: TurtleArt/tabasics.py:876 -msgid "jogs stack down" -msgstr "desplazar la pila abajo" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:110 +msgid "do-until-True operator that uses boolean operators from Numbers palette" +msgstr "" +"se ejecutan la serie de bloques siguientes hasta que se cumpla la condición" -#: TurtleArt/tabasics.py:680 -msgid "modular (remainder) operator" -msgstr "operador módular (resto)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:926 +msgid "top" +msgstr "cima" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:989 -msgid "bottom y" -msgstr "debajo y" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:119 +msgid "top of a collapsible stack" +msgstr "cima de una pila plegable" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 -msgid "save SVG" -msgstr "guardar SVG" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:123 +msgid "media" +msgstr "medios" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:613 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:630 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:647 -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:134 +msgid "journal" +msgstr "diario" -#: TurtleArt/tabasics.py:435 -msgid "pen down" -msgstr "bajar pluma" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:135 +msgid "Sugar Journal media object" +msgstr "objeto de medios del Diario de Sugar" -#: TurtleArt/tabasics.py:799 -msgid "wait" -msgstr "esperar" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:145 +msgid "audio" +msgstr "audio" -#: TurtleArt/tabasics.py:988 TurtleArt/tabasics.py:1004 -msgid "box" -msgstr "caja" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:147 +msgid "Sugar Journal audio object" +msgstr "objeto de audio del Diario de Sugar" -#: gnome_plugins/uploader_plugin.py:203 -msgid "Failed to upload!" -msgstr "¡Error al descargar!" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:157 +msgid "video" +msgstr "video" -#: TurtleArt/tawindow.py:1196 TurtleArt/tawindow.py:1811 -msgid "shift" -msgstr "desplazar" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:159 +msgid "Sugar Journal video object" +msgstr "objeto de video del Diario de Sugar" -#: TurtleArt/tabasics.py:934 TurtleArt/tawindow.py:4589 -msgid "invokes named action stack" -msgstr "invocar la pila de acción nombrado" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:169 +msgid "description" +msgstr "descripción" -#: TurtleArt/tabasics.py:918 TurtleArt/tabasics.py:921 -#: TurtleArt/tabasics.py:929 TurtleArt/tabasics.py:933 -#: TurtleArt/tawindow.py:1496 TurtleArt/tawindow.py:1594 -#: TurtleArt/tawindow.py:1607 TurtleArt/tawindow.py:2227 -#: TurtleArt/tawindow.py:4575 -msgid "action" -msgstr "acción" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:171 +msgid "Sugar Journal description field" +msgstr "campo de descripción del Diario de Sugar" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:110 -msgid "do-until-True operator that uses boolean operators from Numbers palette" -msgstr "" -"se ejecutan la serie de bloques siguientes hasta que se cumpla la condición" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 +msgid "show" +msgstr "mostrar" -#: turtleblocks.py:94 -msgid "usage is" -msgstr "el uso es" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:192 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:206 +msgid "draws text or show media from the Journal" +msgstr "dibujar texto o mostrar medios desde el Diario" -#: TurtleArt/tabasics.py:982 -msgid "Variable 2 (numeric value)" -msgstr "Variable 2 (valor numérico)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:202 +msgid "show aligned" +msgstr "mostrar alineados" -#: TurtleArt/tabasics.py:653 -msgid "divide" -msgstr "dividir" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:215 +msgid "set scale" +msgstr "fijar escala" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:219 +msgid "sets the scale of media" +msgstr "fijar la escala de medios" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:227 +msgid "save picture" +msgstr "guardar imagen" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:229 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:240 msgid "picture name" msgstr "nombre de la imagen" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:96 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:99 -msgid "while" -msgstr "mientras" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:913 -msgid "the canvas width" -msgstr "el ancho del lienzo" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:514 -msgid "empty heap?" -msgstr "pila vacía?" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:230 +msgid "saves a picture to the Sugar Journal" +msgstr "guarda una imagen en el Diario de Azúcar" -#: TurtleArt/tabasics.py:1010 TurtleArt/tawindow.py:4618 -msgid "named variable (numeric value)" -msgstr "variable nombrado (valor numérico)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 +msgid "save SVG" +msgstr "guardar SVG" -#: TurtleArt/tawindow.py:1157 TurtleArt/tawindow.py:1790 -msgid "next" -msgstr "siguiente" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:241 +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" -#: TurtleArt/tabasics.py:835 -msgid "if then" -msgstr "si entonces" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 +msgid "scale" +msgstr "escala" -#: TurtleArt/tabasics.py:457 -msgid "set pen size" -msgstr "fijar tamaño" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252 +msgid "holds current scale value" +msgstr "mantiene el valor actual de la escala" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859 -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:257 +msgid "media wait" +msgstr "esperar medios" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:109 -msgid "until" -msgstr "hasta" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 +msgid "wait for current video or audio to complete" +msgstr "esperar hasta completar el audio o vídeo" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:265 msgid "media stop" msgstr "parar medios" -#: TurtleArtActivity.py:334 turtleblocks.py:428 -msgid "Turn on hover help" -msgstr "Habilitar ayuda flotante" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:267 +msgid "stop video or audio" +msgstr "detiene el video o audio" -#: TurtleArt/tabasics.py:1064 -msgid "permanently deletes items in trash" -msgstr "borra permanentemente elementos de la papelera" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272 +msgid "media pause" +msgstr "pausar medios" -#: pysamples/uturn.py:35 -msgid "uturn" -msgstr "vuelta en U" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274 +msgid "pause video or audio" +msgstr "pausa el video o audio" -#: TurtleArt/tabasics.py:1020 -msgid "top of Action 1 stack" -msgstr "primero de la pila de Acción 1" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:279 +msgid "media resume" +msgstr "continuar medios" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571 -msgid "" -"a programmable block: used to add advanced single-variable math equations, e." -"g., sin(x)" -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:281 +msgid "resume playing video or audio" +msgstr "reanudar la reproducción de video o audio" -#: TurtleArt/tabasics.py:794 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:91 -msgid "Palette of flow operators" -msgstr "Paleta de operadores de flujo" +# decir +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:287 +msgid "speak" +msgstr "hablar" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:751 -#, fuzzy -msgid "top of a collapsed stack" -msgstr "" -"#-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-#\n" -"cima de una pila plegable\n" -"#-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-#\n" -"cima de una pila colapsada" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:289 +msgid "hello" +msgstr "hola" -#: TurtleArt/tabasics.py:850 TurtleArt/tabasics.py:858 -msgid "if-then-else operator that uses boolean operators from Numbers palette" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:290 +msgid "speaks text" +msgstr "dice texto" + +#. TRANS: pitch, duration, amplitude +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:298 +msgid "sinewave" +msgstr "sinusoide" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299 +msgid "amplitude" +msgstr "amplitud" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299 +msgid "duration" +msgstr "duración" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302 +msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)" msgstr "" -"operador si-entonces-sino que usa operadores lógicos de la paleta de Números" +"reproduce una sinusoide desde frecuencia, amplitud y duración (en segundos)" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309 +msgid "sensor" +msgstr "sensor" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:320 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:331 +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:323 +msgid "returns 1 if mouse button is pressed" +msgstr "retorna 1 si el botón del ratón está presionado" + +# devuelve en lugar de retorna - mouse en lugar de ratón +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334 +msgid "returns True if mouse button is pressed" +msgstr "devuelve Verdadero si el botón del ratón está presionado" + +# mouse x o cursor +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:342 +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:345 +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:352 +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:355 msgid "returns mouse y coordinate" msgstr "retorna la coordenada y del cursor" -#: TurtleArt/tabasics.py:402 -msgid "holds current pen shade" -msgstr "contiene la tonalidad actual de la pluma" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363 +msgid "query keyboard" +msgstr "consulta de teclado" -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: pitch, duration, amplitude -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:298 -msgid "sinewave" -msgstr "sinusoide" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365 +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)" -#: gnome_plugins/uploader_plugin.py:166 -msgid "Login failed" -msgstr "Error de autentificación" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:372 +msgid "keyboard" +msgstr "teclado" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:962 -msgid "left x" -msgstr "izquierda x" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376 +msgid "holds results of query-keyboard block as ASCII" +msgstr "contiene los resultados del bloque de consulta de teclado como ASCII" -# rumbo is the word traditionally used in LOGO; we should try to maintain consistency with the LOGO community -#: TurtleArt/tabasics.py:228 -msgid "set heading" -msgstr "fijar rumbo" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:408 +msgid "read pixel" +msgstr "leer pixel" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:411 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:814 -msgid "declutters canvas by hiding blocks" -msgstr "limpia el lienzo ocultando bloques" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:419 +msgid "turtle sees" +msgstr "la tortuga ve" -#: TurtleArtActivity.py:1064 -msgid "w" -msgstr "w" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:421 +msgid "returns the color that the turtle \"sees\"" +msgstr "muestra el color que \"ve\" la tortuga" -#: TurtleArtActivity.py:1062 -msgid "r" -msgstr "r" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:429 +msgid "time" +msgstr "tiempo" -#: TurtleArtActivity.py:1067 -msgid "s" -msgstr "s" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:432 +msgid "elapsed time (in seconds) since program started" +msgstr "el tiempo transcurrido (en segundos) desde el inicio del programa" -#: TurtleArtActivity.py:1055 -msgid "p" -msgstr "p" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:438 +msgid "extras" +msgstr "extras" -#: TurtleArtActivity.py:1060 -msgid "e" -msgstr "e" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:442 +msgid "Palette of extra options" +msgstr "Paleta de opciones adicionales" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:551 -msgid "Python chr operator" -msgstr "Operador chr de Python" +#. TRANS: push adds a new item to the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:449 +msgid "push" +msgstr "empujar" -#: TurtleArt/tabasics.py:867 -msgid "horizontal space" -msgstr "espacio horizontal" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:452 +msgid "pushes value onto FILO (first-in last-out heap)" +msgstr "apila el valor sobre la pila FILO (primero en entrar, último en salir)" -#: TurtleArtActivity.py:690 TurtleArtActivity.py:851 -msgid "Metric coordinates" -msgstr "Coordenadas centímetros" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:462 +msgid "show heap" +msgstr "mostrar pila" -#: TurtleArt/tabasics.py:914 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:183 -msgid "string value" -msgstr "valor de cadena" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:465 +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:169 -msgid "description" -msgstr "descripción" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:475 +msgid "empty heap" +msgstr "vaciar pila" -#: TurtleArt/talogo.py:573 -msgid "I don't know how to" -msgstr "No sé como hacerlo" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:478 +msgid "emptys FILO (first-in-last-out heap)" +msgstr "vacía la pila FILO (primera-en-entrar último-en-salir)" -#: gnome_plugins/uploader_plugin.py:99 -msgid "Username:" -msgstr "Usuario:" +#. TRANS: pop removes a new item from the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489 +msgid "pop" +msgstr "sacar" -#: TurtleArt/tabasics.py:474 -msgid "starts filled polygon (used with end fill block)" -msgstr "" -"comenzar a rellenar el poligono (usado con finalizar el relleno del bloque)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:493 +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:873 -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:504 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:514 +msgid "empty heap?" +msgstr "pila vacía?" -#: TurtleArtActivity.py:630 TurtleArtActivity.py:658 TurtleArtActivity.py:775 -#: TurtleArtActivity.py:845 turtleblocks.py:430 -msgid "View" -msgstr "Ver" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:507 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:517 +msgid "returns True if heap is empty" +msgstr "devuelve Verdadero si la pila está vacía" -#: TurtleArt/tabasics.py:378 -msgid "sets gray level of the line drawn by the turtle" -msgstr "establece el nivel de gris de la línea dibujada por la tortuga" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527 +msgid "comment" +msgstr "comentar" -#: gnome_plugins/uploader_plugin.py:109 -msgid "Password:" -msgstr "Contraseña:" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 +msgid "places a comment in your code" +msgstr "coloca un comentario en tu código" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:419 -msgid "turtle sees" -msgstr "la tortuga ve" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:536 +msgid "print" +msgstr "imprimir" -#: TurtleArt/tabasics.py:882 -msgid "stop action" -msgstr "parar acción" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540 +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" -#: TurtleArt/tabasics.py:521 -msgid "green" -msgstr "verde" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:551 +msgid "Python chr operator" +msgstr "Operador chr de Python" -#: TurtleArt/tabasics.py:317 TurtleArt/tabasics.py:331 -#: TurtleArt/tabasics.py:401 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1128 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1133 -msgid "shade" -msgstr "tono" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560 +msgid "Python int operator" +msgstr "Operador int de Python" -#: TurtleArt/tabasics.py:321 TurtleArt/tabasics.py:335 -msgid "fills the background with (color, shade)" -msgstr "rellena el fondo con (color, sombra)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:567 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:581 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595 +msgid "Python" +msgstr "Python" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:227 -msgid "save picture" -msgstr "guardar imagen" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571 +msgid "" +"a programmable block: used to add advanced single-variable math equations, e." +"g., sin(x)" +msgstr "" +"un bloque programable: utilizado para añadir ecuaciones matemáticas " +"avanzadas de una variable, p.e., seno(x)" -#: plugins/audio_sensors/audio_sensors.py:119 -#: plugins/audio_sensors/audio_sensors.py:127 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:298 -msgid "pitch" -msgstr "frecuencia" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585 +msgid "" +"a programmable block: used to add advanced multi-variable math equations, e." +"g., sqrt(x*x+y*y)" +msgstr "" +"un bloque programable: utilizado para agregar ecuaciones matemáticas " +"avanzadas de múltiples variables, i.e., sqrt(x*x+y*y)" -# devuelve en lugar de retorna - mouse en lugar de ratón -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:323 -msgid "returns 1 if mouse button is pressed" -msgstr "retorna 1 si el botón del ratón está presionado" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:599 +msgid "" +"a programmable block: used to add advanced multi-variable math equations, e." +"g., sin(x+y+z)" +msgstr "" +"un bloque programable: utilizado para añadir ecuaciones matemáticas " +"avanzadas multivariables, p.e. seno(x+y+z)" -#: TurtleArtActivity.py:527 TurtleArtActivity.py:693 TurtleArtActivity.py:853 -msgid "Rescale coordinates up" -msgstr "Escalar coordenadas hacia arriba" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:611 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:628 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644 +msgid "Python block" +msgstr "bloque Python" -# verbo -#: TurtleArt/tabasics.py:423 -msgid "pen up" -msgstr "subir pluma" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:613 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:630 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:647 +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" -#: TurtleArt/tabasics.py:517 -msgid "orange" -msgstr "naranja" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660 +msgid "Cartesian" +msgstr "Cartesiana" -#: TurtleArt/tabasics.py:803 -msgid "pauses program execution a specified number of seconds" -msgstr "detiene la ejecución del programa por número determinado de segundos" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662 +msgid "displays Cartesian coordinates" +msgstr "muestra coordenadas cartesianas" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:452 -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:668 +msgid "polar" +msgstr "polar" -#: TurtleArt/tabasics.py:1073 -msgid "clear all" -msgstr "borrar todos" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:670 +msgid "displays polar coordinates" +msgstr "muestra las coordenadas polares" -#: TurtleArt/tabasics.py:832 TurtleArt/tabasics.py:845 -msgid "then" -msgstr "entonces" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:680 +msgid "chooses which turtle to command" +msgstr "elige la tortuga a ordenar" -#: gnome_plugins/collaboration_plugin.py:299 -msgid "Register" -msgstr "Registro" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:688 +msgid "turtle x" +msgstr "tortuga x" -#: TurtleArt/tabasics.py:759 -msgid "not" -msgstr "no" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:691 +msgid "Returns x coordinate of turtle" +msgstr "Devuelve la coordenada x de la tortuga" -#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:857 -msgid "if then else" -msgstr "si entonces sino" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:698 +msgid "turtle y" +msgstr "tortuga y" -#: TurtleArt/tabasics.py:885 -msgid "stops current action" -msgstr "detiene la acción actual" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701 +msgid "Returns y coordinate of turtle" +msgstr "Devuelve la coordenada y de la tortuga" -#: TurtleArt/tabasics.py:187 -msgid "turns turtle clockwise (angle in degrees)" -msgstr "gira la tortuga en sentido horario (ángulo en grados)" +#. TRANS: pop removes a new item from the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:709 +msgid "active turtle" +msgstr "tortuga activa" -#: TurtleArt/tabasics.py:414 -msgid "holds current gray level (can be used in place of a number block)" -msgstr "" -"contiene el nivel actual de gris (puede ser utilizado en vez de un bloque " -"numérico)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:712 +msgid "the name of the active turtle" +msgstr "nombre de la tortuga activa" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 -msgid "xcor of left of screen" -msgstr "coorx de la izquierda de la pantalla" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:720 +msgid "turtle heading" +msgstr "rumbo tortuga" -#: turtleblocks.py:425 -msgid "Reset block size" -msgstr "Restaurar el tamaño del bloque" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 +msgid "Returns heading of turtle" +msgstr "Devuelve el rumbo de la tortuga" -#: TurtleArt/tabasics.py:122 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:676 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:794 -msgid "turtle" -msgstr "tortuga" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:732 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742 +msgid "turtle shell" +msgstr "caparazón tortuga" -#: TurtleArt/tapalette.py:98 -msgid "displays next palette" -msgstr "muestra la siguiente paleta" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:743 +msgid "put a custom 'shell' on the turtle" +msgstr "pone una caparazón personalizada a la tortuga" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:812 -#, fuzzy -msgid "hide blocks" -msgstr "" -"#-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-#\n" -"ocultar los bloques\n" -"#-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-#\n" -"ocultar bloques" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:751 +msgid "top of a collapsed stack" +msgstr "cima de una pila colapsada" -#: plugins/camera_sensor/camera_sensor.py:82 -#: plugins/camera_sensor/camera_sensor.py:130 -msgid "light level detected by camera" -msgstr "nivel de luz detectado por la cámara" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:767 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779 +msgid "load" +msgstr "cargar" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560 -msgid "Python int operator" -msgstr "Operador int de Python" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:759 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 +msgid "loads a block" +msgstr "carga un bloque" -#: TurtleArt/tabasics.py:740 -msgid "logical less-than operator" -msgstr "operador lógico menor que" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:782 +msgid "setxy" +msgstr "fijar xy" -#: TurtleArt/tabasics.py:1069 -msgid "restore all blocks from trash" -msgstr "restaura todos los bloques de la papelera" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:792 +msgid "select palette" +msgstr "seleccionar paleta" -#: turtleblocks.py:404 -msgid "Save" -msgstr "Guardar" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795 +msgid "selects a palette" +msgstr "selecciona una paleta" -#: TurtleArt/tabasics.py:941 -msgid "store in box 1" -msgstr "guardar en caja 1" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:801 +msgid "portfolio" +msgstr "cartera" -#: TurtleArt/tabasics.py:955 -msgid "store in box 2" -msgstr "guardar en caja 2" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:805 +msgid "Palette of presentation templates" +msgstr "Paleta de plantillas de presentaciones" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:812 +msgid "hide blocks" +msgstr "ocultar bloques" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:814 +msgid "declutters canvas by hiding blocks" +msgstr "limpia el lienzo ocultando bloques" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:821 +msgid "show blocks" +msgstr "mostrar bloques" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:823 +msgid "restores hidden blocks" +msgstr "restaura bloques ocultos" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831 msgid "hides the Sugar toolbars" msgstr "oculta las barras de herramientas de Azúcar" -#: TurtleArt/tabasics.py:243 -msgid "" -"holds current x-coordinate value of the turtle (can be used in place of a " -"number block)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840 +msgid "list" +msgstr "lista" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:844 +msgid "presentation bulleted list" +msgstr "presentación con lista de viñetas" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:852 +msgid "presentation template: list of bullets" +msgstr "plantilla de presentación: lista de viñetas" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859 +msgid "presentation template: select Journal object (no description)" msgstr "" -"contiene la coordenada x actual de la tortuga (se puede usar en vez de un " -"bloque de número)" +"plantilla de presentación: seleccionar objeto del Diario (sin descripción)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:536 -msgid "print" -msgstr "imprimir" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:866 +msgid "presentation template: select Journal object (with description)" +msgstr "" +"plantilla de presentación: seleccionar objeto del Diario (con descripción)" -# devuelve en lugar de retorna - mouse en lugar de ratón -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345 -msgid "returns mouse x coordinate" -msgstr "devuelve la coordenada x del cursor" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 +msgid "presentation template: select four Journal objects" +msgstr "plantilla de presentación: seleccionar cuatro objetos del Diario" -#: TurtleArt/tabasics.py:516 -msgid "red" -msgstr "rojo" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:880 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887 +msgid "presentation template: select two Journal objects" +msgstr "plantilla de presentación: seleccionar dos objetos del Diario" -#: TurtleArtActivity.py:207 TurtleArtActivity.py:806 TurtleArtActivity.py:989 -#: TurtleArtActivity.py:1025 turtleblocks.py:408 -msgid "Save as Logo" -msgstr "Guardar como Logo" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 +msgid "xcor of left of screen" +msgstr "coorx de la izquierda de la pantalla" -#: TurtleArt/tabasics.py:351 -msgid "sets color of the line drawn by the turtle" -msgstr "fija el color de la línea que la tortuga dibuja" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902 +msgid "bottom" +msgstr "debajo" -#: plugins/audio_sensors/audio_sensors.py:90 -#: plugins/audio_sensors/audio_sensors.py:105 -msgid "loudness" -msgstr "volumen" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:905 +msgid "ycor of bottom of screen" +msgstr "coory del limite inferior de la pantalla" -#: gnome_plugins/collaboration_plugin.py:111 -msgid "Enable collaboration" -msgstr "Permitir la colaboración" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910 +msgid "width" +msgstr "anchura" -#: plugins/accelerometer/accelerometer.py:49 -#: plugins/audio_sensors/audio_sensors.py:75 -#: plugins/camera_sensor/camera_sensor.py:63 -#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:313 -msgid "Palette of sensor blocks" -msgstr "Paleta de bloques sensor" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:913 +msgid "the canvas width" +msgstr "el ancho del lienzo" -#: TurtleArtActivity.py:810 TurtleArtActivity.py:1013 -#: TurtleArtActivity.py:1035 -msgid "Load plugin" -msgstr "Cargar plugin" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:921 +msgid "xcor of right of screen" +msgstr "xcor del lado derecho de la pantalla" -# devuelve en lugar de retorna - mouse en lugar de ratón -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334 -msgid "returns True if mouse button is pressed" -msgstr "devuelve Verdadero si el botón del ratón está presionado" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:929 +msgid "ycor of top of screen" +msgstr "ycor del limite superior de la pantalla" -#: TurtleArt/tabasics.py:715 -msgid "number" -msgstr "número" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:934 +msgid "height" +msgstr "altura" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363 -msgid "query keyboard" -msgstr "consulta de teclado" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:937 +msgid "the canvas height" +msgstr "la altura del lienzo" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:926 -msgid "top" -msgstr "cima" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:944 +msgid "title x" +msgstr "título x" -#: gnome_plugins/uploader_plugin.py:140 -msgid "Submit to Web" -msgstr "Enviar a la Web" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:953 +msgid "title y" +msgstr "título y" -#: TurtleArtActivity.py:685 TurtleArtActivity.py:847 turtleblocks.py:414 -msgid "Cartesian coordinates" -msgstr "Coordenadas cartesianas" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:962 +msgid "left x" +msgstr "izquierda x" -#: gnome_plugins/collaboration_plugin.py:289 -msgid "Nickname" -msgstr "Apodo" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:971 +msgid "top y" +msgstr "arriba y" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:215 -msgid "set scale" -msgstr "fijar escala" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:980 +msgid "right x" +msgstr "derecha x" -#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:2205 -#: TurtleArtActivity.py:800 -msgid "Share selected blocks" -msgstr "Compartir bloques seleccionados" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:989 +msgid "bottom y" +msgstr "debajo y" -#: TurtleArt/tabasics.py:526 -msgid "white" -msgstr "blanco" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1002 +msgid "my blocks" +msgstr "mis bloques" -#: TurtleArt/tabasics.py:904 -msgid "connects action to toolbar run buttons" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1007 +msgid "Palette of user-defined operators" +msgstr "Paleta de operaciones definidas por el usuario" + +#: pysamples/brain.py:43 +msgid "Please install the Speak Activity and try again." +msgstr "Por favor instala la Actividad Hablar e intenta de nuevo." + +#: pysamples/brain.py:52 +msgid "Spanish" +msgstr "Español" + +#: pysamples/brain.py:56 pysamples/brain.py:69 pysamples/brain.py:71 +#: pysamples/brain.py:77 +msgid "English" +msgstr "Inglés" + +#: pysamples/brain.py:88 +msgid "Sorry, I can't understand what you are asking about." +msgstr "Lo siento, no puedo entender lo que estás preguntando." + +#: pysamples/brain.py:97 +msgid "" +"Sorry, there is no free memory to load my brain. Close other activities and " +"try once more." msgstr "" -"conecta la acción a los botones de ejecución de la barra de herramientas" +"Lo siento, no hay memoria libre para cargar mi cerebro. Cierra otras " +"actividades e intenta una vez más." -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:432 -msgid "elapsed time (in seconds) since program started" -msgstr "el tiempo transcurrido (en segundos) desde el inicio del programa" +#: pysamples/forward_push.py:48 +msgid "push destination rgb value to heap" +msgstr "empujar el valor rgb de destino a la pila" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299 -msgid "amplitude" -msgstr "amplitud" +#: pysamples/grecord.py:216 +msgid "stop" +msgstr "parar" -#: TurtleArt/tawindow.py:1682 TurtleArt/tawindow.py:1721 -#: gnome_plugins/uploader_plugin.py:144 -msgid "Cancel" -msgstr "Cancelar" +#: pysamples/grecord.py:218 +msgid "play" +msgstr "reproducir" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:937 -msgid "the canvas height" -msgstr "la altura del lienzo" +#: pysamples/grecord.py:220 +msgid "save" +msgstr "guardar" -#: TurtleArt/tabasics.py:627 -msgid "minus" -msgstr "menos" +#: pysamples/journal-stats.py:80 +msgid "other" +msgstr "otros" -#: TurtleArt/tabasics.py:768 TurtleArt/tabasics.py:771 -msgid "and" -msgstr "y" +#: pysamples/uturn.py:35 +msgid "uturn" +msgstr "vuelta en U" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:119 -msgid "top of a collapsible stack" -msgstr "cima de una pila plegable" +#: pysamples/uturn.py:37 +msgid "turns the turtle 180 degrees" +msgstr "gira la tortuga 180 grados" -#: TurtleArt/talogo.py:632 -msgid "as input" -msgstr "como entrada" +#: turtleblocks.py:94 +msgid "usage is" +msgstr "el uso es" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:611 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:628 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644 -msgid "Python block" -msgstr "bloque Python" +#: turtleblocks.py:282 +msgid "No option action:" +msgstr "Sin acción alternativa:" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257 -msgid "media wait" -msgstr "esperar medios" +#: turtleblocks.py:297 +msgid "File not found" +msgstr "Fichero no encontrado" -#: plugins/accelerometer/accelerometer.py:56 -#: plugins/accelerometer/accelerometer.py:63 -msgid "acceleration" -msgstr "acelerómetro" +#: turtleblocks.py:321 +#, python-format +msgid "Configuration directory not writable: %s" +msgstr "Directorio de configuración no modificable: %s" -#: TurtleArt/tabasics.py:495 -msgid "holds current pen size (can be used in place of a number block)" -msgstr "" -"contiene el tamaño actual de la pluma (se puede usar en vez de un bloque de " -"número)" +#: turtleblocks.py:397 +msgid "New" +msgstr "Nuevo" -#: TurtleArt/tabasics.py:699 -msgid "min" -msgstr "min" +#: turtleblocks.py:398 +msgid "Show sample projects" +msgstr "Mostrar proyectos de ejemplo" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:759 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 -#, fuzzy -msgid "loads a block" -msgstr "" -"#-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-#\n" -"cargar un bloque\n" -"#-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-#\n" -"carga un bloque" +#: turtleblocks.py:400 +msgid "Hide sample projects" +msgstr "Ocultar proyectos de ejemplo" -#: TurtleArt/tabasics.py:312 -msgid "Palette of pen commands" -msgstr "Paleta de órdenes de la pluma" +#: turtleblocks.py:404 +msgid "Save" +msgstr "Guardar" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:465 -msgid "shows values in FILO (first-in last-out heap)" -msgstr "" -"muestra los valores en la pila FILO (primero en entrar, último en salir)" +#: turtleblocks.py:405 +msgid "Save as" +msgstr "Guardar como" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:100 -msgid "do-while-True operator that uses boolean operators from Numbers palette" -msgstr "" -"se ejecuta la serie de acciones siguientes al bloque mientras se cumpla la " -"condición fijada al comienzo del mismo" +#: turtleblocks.py:410 +msgid "Quit" +msgstr "Salir" #: turtleblocks.py:411 msgid "File" msgstr "Archivo" -#: TurtleArt/tabasics.py:762 -msgid "logical NOT operator" -msgstr "operador NO lógico" +#: turtleblocks.py:419 +msgid "Rescale coordinates" +msgstr "Escalar coordenadas" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:905 -msgid "ycor of bottom of screen" -msgstr "coory del limite inferior de la pantalla" +#: turtleblocks.py:425 +msgid "Reset block size" +msgstr "Restaurar el tamaño del bloque" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:866 -msgid "presentation template: select Journal object (with description)" -msgstr "" -"plantilla de presentación: seleccionar objeto del Diario (con descripción)" +#: turtleblocks.py:446 +msgid "Show/hide blocks" +msgstr "Mostar/ocultar bloques" -#: TurtleArt/tabasics.py:609 -msgid "Palette of numeric operators" -msgstr "Paleta de operadores numéricos" +#: turtleblocks.py:448 +msgid "Tools" +msgstr "Herramientas" -#: TurtleArt/tabasics.py:641 -msgid "multiply" -msgstr "multiplicar" +#: turtleblocks.py:454 +msgid "Debug" +msgstr "Depurar" -#: TurtleArt/tabasics.py:810 -msgid "forever" -msgstr "por siempre" +#: turtleblocks.py:456 +msgid "Turtle" +msgstr "Tortuga" -#: TurtleArtActivity.py:1327 -#, python-format -msgid "Plugin %s already installed." -msgstr "El plugin %s ya se encuentra instalado." +#: turtleblocks.py:459 +msgid "About..." +msgstr "Acerca..." -#: TurtleArt/tabasics.py:365 -msgid "sets shade of the line drawn by the turtle" -msgstr "fija la tonalidad de la linea que la tortuga dibuja" +#: turtleblocks.py:498 +msgid "You have unsaved work. Would you like to save before quitting?" +msgstr "Hay trabajo sin guardar. ¿Le gustaría guardar antes de salir?" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:290 -msgid "speaks text" -msgstr "dice texto" +#: turtleblocks.py:500 +msgid "Save project?" +msgstr "¿Guardar el proyecto?" -#: TurtleArtActivity.py:272 -msgid "snapshot" -msgstr "instantánea" +#~ msgid "palette" +#~ msgstr "paleta" -#: TurtleArt/tabasics.py:158 -msgid "clean" -msgstr "limpiar" +#~ msgid "set text color" +#~ msgstr "fijar el color del texto" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:880 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887 -msgid "presentation template: select two Journal objects" -msgstr "plantilla de presentación: seleccionar dos objetos del Diario" +#~ msgid "sets color of text drawn by the turtle" +#~ msgstr "fija el color del texto dibujado por la tortuga" -#: TurtleArtActivity.py:696 TurtleArtActivity.py:855 turtleblocks.py:421 -msgid "Grow blocks" -msgstr "Agrandar bloques" +#~ msgid "set text size" +#~ msgstr "fijar tamaño del texto" -#: TurtleArtActivity.py:682 TurtleArtActivity.py:846 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:829 -msgid "Fullscreen" -msgstr "Pantalla completa" +#~ msgid "sets size of text drawn by the turtle" +#~ msgstr "fija el tamaño del texto dibujado por la tortuga" -#: turtleblocks.py:297 -msgid "File not found" -msgstr "Fichero no encontrado" +#~ msgid "presentation 1x1" +#~ msgstr "presentación 1x1" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 -msgid "show" -msgstr "mostrar" +#~ msgid "presentation 2x1" +#~ msgstr "presentación 2x1" -#: TurtleArt/tabasics.py:911 TurtleArt/tabasics.py:912 -#: TurtleArt/tabasics.py:913 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:203 -msgid "text" -msgstr "texto" +#~ msgid "presentation 1x2" +#~ msgstr "presentación 1x2" -#: TurtleArt/tabasics.py:699 -msgid "random" -msgstr "aleatorio" +#~ msgid "presentation 2x2" +#~ msgstr "presentación 2x2" -#: TurtleArt/tabasics.py:727 -msgid "logical greater-than operator" -msgstr "operador lógico mayor que" +#~ msgid "make a uturn" +#~ msgstr "hacer una vuelta en U" -#: TurtleArt/tabasics.py:175 -msgid "turns turtle counterclockwise (angle in degrees)" -msgstr "gira la tortuga en sentido anti-horario (ángulo en grados)" +#~ msgid "Turtle Art" +#~ msgstr "TortugArte" -#: TurtleArt/tabasics.py:527 -msgid "black" -msgstr "negro" +#~ msgid "Turtle Art Mini" +#~ msgstr "TortugArte Mini" -#: TurtleArt/tabasics.py:692 -msgid "calculates square root" -msgstr "calcula la raíz cuadrada" +#~ msgid "Turtle Confusion" +#~ msgstr "TortugArte Confusión" -#: TurtleArt/tabasics.py:257 -msgid "" -"holds current y-coordinate value of the turtle (can be used in place of a " -"number block)" -msgstr "" -"contiene la coordenada y actual de la tortuga (se puede usar en vez de un " -"bloque de número)" +#~ msgid "Select a challenge" +#~ msgstr "Selecciona un desafío" -# mouse x o cursor -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:342 -msgid "mouse x" -msgstr "cursor x" +#~ msgid "Amazonas Tortuga" +#~ msgstr "Tortuga Amazonas" -# mouse y - ratón y -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352 -msgid "mouse y" -msgstr "cursor y" +#~ msgid "Palette of Mexican pesos" +#~ msgstr "Paleta de Pesos Mexicanos" -#: pysamples/grecord.py:216 -msgid "stop" -msgstr "parar" +#~ msgid "Palette of Colombian pesos" +#~ msgstr "Paleta de Pesos Colombianos" -#: TurtleArt/tabasics.py:724 -msgid "greater than" -msgstr "mayor que" +#~ msgid "Palette of Rwandan francs" +#~ msgstr "Paleta de Francos de Ruanda" -#: TurtleArt/tabasics.py:242 TurtleArt/tawindow.py:4301 -msgid "xcor" -msgstr "coorx" +#~ msgid "Palette of US dollars" +#~ msgstr "Paleta de Dólares Americanos" -#: TurtleArtActivity.py:784 turtleblocks.py:460 util/helpbutton.py:44 -msgid "Help" -msgstr "Ayuda" +#~ msgid "Palette of Australian dollars" +#~ msgstr "Paleta de Dólares Australianos" -#: turtleblocks.py:500 -msgid "Save project?" -msgstr "¿Guardar el proyecto?" +#~ msgid "Palette of Paraguayan Guaranies" +#~ msgstr "Paleta de Guaraníes Paraguayos" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:680 -msgid "chooses which turtle to command" -msgstr "elige la tortuga a ordenar" +#~ msgid "Palette of Peruvian Nuevo Soles" +#~ msgstr "Paletea de Nuevos Soles Peruanos" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:980 -msgid "right x" -msgstr "derecha x" +#~ msgid "Palette of Uruguayan Pesos" +#~ msgstr "Paleta de Pesos Uruguayos" -#: plugins/light_sensor/light_sensor.py:58 -#: plugins/light_sensor/light_sensor.py:65 -msgid "light level detected by light sensor" -msgstr "nivel de luz detectado por el sensor" +#~ msgid "TurtleBots" +#~ msgstr "TurtleBots" -#: TurtleArtActivity.py:1228 TurtleArtActivity.py:1233 -#: TurtleArtActivity.py:1313 -msgid "Plugin could not be installed." -msgstr "El plugin no puede ser instalado." +#~ msgid "adjust LED intensity between 0 and 255" +#~ msgstr "ajusta la intensidad del LED entre 0 y 255" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:372 -msgid "keyboard" -msgstr "teclado" +#~ msgid "returns the object gray level as a number between 0 and 1023" +#~ msgstr "devuelve el nivel de luz en el ambiente como un número entre 0 y 1023" -#: TurtleArt/tabasics.py:197 -msgid "arc" -msgstr "arco" +#~ msgid "returns 1 when the button is press and 0 otherwise" +#~ msgstr "devuelve 1 cuando el botón está presionado y 0 en otro caso" -#: TurtleArt/tabasics.py:197 -msgid "radius" -msgstr "radio" +#~ msgid "returns the ambient light level as a number between 0 and 1023" +#~ msgstr "devuelve el nivel de luz en el ambiente como un número entre 0 y 1023" -#: TurtleArtActivity.py:687 TurtleArtActivity.py:849 turtleblocks.py:416 -msgid "Polar coordinates" -msgstr "Coordenadas polares" +#~ msgid "returns the ambient temperature as a number between 0 and 255" +#~ msgstr "devuelve la temperatura en el ambiente como un número entre 0 y 255" -#: TurtleArt/tabasics.py:361 -msgid "set shade" -msgstr "fijar tono" +#~ msgid "" +#~ "returns the distance from the object in front of the sensor as a number " +#~ "between 0 and 255" +#~ msgstr "" +#~ "devuelve la distancia del objeto en frente al sensor como un número entre 0 " +#~ "y 255" -#: TurtleArt/tabasics.py:772 -msgid "logical AND operator" -msgstr "operador Y lógico" +#~ msgid "returns 0 or 1 depending on the sensor inclination" +#~ msgstr "devuelve 0 o 1 dependiendo de la inclinación del sensor" -#: gnome_plugins/uploader_plugin.py:90 -msgid "" -"You must have an account at http://turtleartsite.sugarlabs.org to upload " -"your project." -msgstr "" -"Debe contar con una cuenta en http://turtleartsite.sugarlabs.org para bajar " -"su proyecto." +#~ msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +#~ msgstr "devuelve 1 cuando el sensor detecta un campo magnético, 0 en otro caso" -#: TurtleArtActivity.py:778 TurtleArtActivity.py:1062 turtleblocks.py:452 -msgid "Run" -msgstr "Ejecutar" +#~ msgid "switches from 0 to 1, the frequency depends on the vibration" +#~ msgstr "oscila entre 0 y 1 dependiendo de la vibración" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:462 -msgid "show heap" -msgstr "mostrar pila" +#~ msgid "returns the value of the resistance" +#~ msgstr "devuleve el valor de la resistencia" -#: TurtleArt/tabasics.py:232 -msgid "sets the heading of the turtle (0 is towards the top of the screen.)" -msgstr "" -"fija la orientación de la tortuga (0 es hacia la parte superior de la " -"pantalla.)" +#~ msgid "LED" +#~ msgstr "LED" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795 -#, fuzzy -msgid "selects a palette" -msgstr "" -"#-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-#\n" -"seleccionar paleta\n" -"#-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-#\n" -"selecciona una paleta" +#~ msgid "button" +#~ msgstr "botón" -#: plugins/audio_sensors/audio_sensors.py:91 -#: plugins/audio_sensors/audio_sensors.py:106 -msgid "microphone input volume" -msgstr "volumen de entrada de micrófono" +#~ msgid "grayscale" +#~ msgstr "escala de gris" -#: gnome_plugins/uploader_plugin.py:120 -msgid "Title:" -msgstr "Título:" +#~ msgid "ambient light" +#~ msgstr "luz ambiente" -#: plugins/camera_sensor/camera_sensor.py:67 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127 -msgid "Palette of media objects" -msgstr "Paleta de bloques medios" +#~ msgid "temperature" +#~ msgstr "temperatura" -#: TurtleArtActivity.py:674 -msgid "Restore blocks from trash" -msgstr "Restaura los bloques de la papelera" +#~ msgid "distance" +#~ msgstr "distancia" -#: TurtleArt/tabasics.py:896 -msgid "Palette of variable blocks" -msgstr "Paleta de bloques de variables" +#~ msgid "tilt" +#~ msgstr "inclinación" -#: TurtleArt/tabasics.py:716 -msgid "used as numeric input in mathematic operators" -msgstr "utilizado como entrada numérica en los operadores matemáticos" +#~ msgid "magnetic induction" +#~ msgstr "campo magnético" -#: gnome_plugins/fb_plugin.py:82 gnome_plugins/fb_plugin.py:83 -#: gnome_plugins/fb_plugin.py:92 gnome_plugins/uploader_plugin.py:63 -#: gnome_plugins/uploader_plugin.py:64 gnome_plugins/uploader_plugin.py:73 -msgid "Upload" -msgstr "Cargar" +#~ msgid "vibration" +#~ msgstr "vibración" -#: gnome_plugins/collaboration_plugin.py:293 -msgid "Server" -msgstr "Servidor" +#~ msgid "Butia Robot" +#~ msgstr "Robot Butiá" -#: TurtleArt/tabasics.py:972 -msgid "Variable 1 (numeric value)" -msgstr "Variable 1 (valor numérico)" +#~ msgid "refresh Butia" +#~ msgstr "refrescar Butiá" -#: gnome_plugins/collaboration_plugin.py:128 -msgid "Neighborhood" -msgstr "Vecindario" +#~ msgid "refresh the state of the Butia palette and blocks" +#~ msgstr "actualiza el estado de la paleta y de los bloques Butiá" -#: TurtleArt/tabasics.py:619 -msgid "adds two alphanumeric inputs" -msgstr "suma dos entradas alfanuméricas" +#~ msgid "battery charge Butia" +#~ msgstr "carga de batería Butiá" -#: TurtleArt/tabasics.py:748 -msgid "equal" -msgstr "igual" +#~ msgid "returns the battery charge as a number between 0 and 255" +#~ msgstr "devuelve la carga de la batería del robot como un número entre 0 y 255" -#: TurtleArt/tabasics.py:845 -msgid "else" -msgstr "sino" +#~ msgid "speed Butia" +#~ msgstr "velocidad Butiá" -#: TurtleArt/talogo.py:631 -msgid "doesn't like" -msgstr "no le gusta" +#~ msgid "set the speed of the Butia motors" +#~ msgstr "establece la velocidad de los motores del Butiá" -#: turtleblocks.py:498 -msgid "You have unsaved work. Would you like to save before quitting?" -msgstr "Hay trabajo sin guardar. ¿Le gustaría guardar antes de salir?" +#~ msgid "the speed must be a value between 0 and 1023" +#~ msgstr "la velocidad debe ser un valor entre 0 y 1023" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:823 -msgid "restores hidden blocks" -msgstr "restaura bloques ocultos" +#~ msgid "forward Butia" +#~ msgstr "adelante Butiá" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:767 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779 -msgid "load" -msgstr "cargar" +#~ msgid "move the Butia robot forward" +#~ msgstr "mueve el robot Butiá hacia adelante" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:267 -msgid "stop video or audio" -msgstr "detiene el video o audio" +#~ msgid "move the Butia robot forward a predefined distance" +#~ msgstr "mueve el robot Butiá hacia adelante una distancia predefinida" -#: TurtleArt/tabasics.py:426 -msgid "Turtle will not draw when moved." -msgstr "La tortuga no dibujará cuando se mueva." +#~ msgid "left Butia" +#~ msgstr "izquierda Butiá" -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: pop removes a new item from the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489 -msgid "pop" -msgstr "sacar" +#~ msgid "turn the Butia robot at left" +#~ msgstr "gira el robot Butiá hacia la izquierda" -#: TurtleArt/tabasics.py:494 -msgid "pen size" -msgstr "tamaño" +#~ msgid "backward Butia" +#~ msgstr "atrás Butiá" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:732 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742 -#, fuzzy -msgid "turtle shell" -msgstr "" -"#-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-#\n" -"caparazón de la tortuga\n" -"#-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-#\n" -"caparazón tortuga" +#~ msgid "move the Butia robot backward" +#~ msgstr "mueve el robot Butiá hacia atrás" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302 -msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)" -msgstr "" -"reproduce una sinusoide desde frecuencia, amplitud y duración (en segundos)" +#~ msgid "move the Butia robot backward a predefined distance" +#~ msgstr "mueve el robot Butiá hacia atrás una distancia predefinida" -#: TurtleArt/tabasics.py:688 -msgid "√" -msgstr "√" +#~ msgid "right Butia" +#~ msgstr "derecha Butiá" -# decir -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:287 -msgid "speak" -msgstr "hablar" +#~ msgid "turn the Butia robot at right" +#~ msgstr "gira el robot Butiá hacia la derecha" -#: plugins/rfid/rfid.py:93 plugins/rfid/rfid.py:101 -msgid "read value from RFID device" -msgstr "leer el valor del dispositivo de radiofrecuencia (RFID)" +#~ msgid "turn Butia" +#~ msgstr "girar Butiá" -#: TurtleArt/tabasics.py:201 -msgid "moves turtle along an arc" -msgstr "mueve la tortuga a lo largo de un arco" +#~ msgid "turn the Butia robot x degrees" +#~ msgstr "gira el robot Butiá x grados" -#: TurtleArt/tabasics.py:752 -msgid "logical equal-to operator" -msgstr "operador lógico de igualdad" +#~ msgid "stop Butia" +#~ msgstr "detener Butiá" -#: TurtleArt/tabasics.py:514 -msgid "Palette of pen colors" -msgstr "Paleta de colores de la pluma" +#~ msgid "stop the Butia robot" +#~ msgstr "detiene al robot Butiá" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274 -msgid "pause video or audio" -msgstr "pausa el video o audio" +#~ msgid "Butia" +#~ msgstr "Butiá" -#: TurtleArt/tabasics.py:946 -msgid "stores numeric value in Variable 1" -msgstr "guarda valor numérico en la variable 1" +#~ msgid "Error importing Pygame. This plugin require Pygame 1.9" +#~ msgstr "Error importando Pygame. Este plugin requiere Pygame 1.9" -#: TurtleArt/tabasics.py:960 -msgid "stores numeric value in Variable 2" -msgstr "guarda valor numérico en la variable 2" +#~ msgid "Error on initialization of the camera" +#~ msgstr "Error en la inicialización de la cámara" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:743 -#, fuzzy -msgid "put a custom 'shell' on the turtle" -msgstr "" -"#-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-#\n" -"vestir a la tortuga con un caparazón a medida\n" -"#-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-#\n" -"pone una caparazón personalizada a la tortuga" +#~ msgid "No camera was found" +#~ msgstr "No se encontraró cámara" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:320 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:331 -msgid "button down" -msgstr "botón presionado" +#~ msgid "Error stopping camera" +#~ msgstr "Error deteniendo cámara" -#: TurtleArt/tabasics.py:148 -msgid "moves turtle backward" -msgstr "mueve la tortuga hacia atrás" +#~ msgid "Error starting camera" +#~ msgstr "Error iniciando cámara" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:929 -msgid "ycor of top of screen" -msgstr "ycor del limite superior de la pantalla" +#~ msgid "Error in get mask" +#~ msgstr "Error en obtener máscara" -#: TurtleArt/talogo.py:384 TurtleArtActivity.py:392 TurtleArtActivity.py:781 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1469 -msgid "Show blocks" -msgstr "Mostrar bloques" +#~ msgid "FollowMe" +#~ msgstr "FollowMe" -#: pysamples/grecord.py:218 -msgid "play" -msgstr "reproducir" +#~ msgid "refresh FollowMe" +#~ msgstr "refrescar FollowMe" -#: pysamples/grecord.py:220 -msgid "save" -msgstr "guardar" +#~ msgid "Search for a connected camera." +#~ msgstr "Busca una cámara conectada." -#: gnome_plugins/collaboration_plugin.py:301 -msgid "Colors" -msgstr "Colores" +#~ msgid "calibration" +#~ msgstr "calibración" -#: TurtleArt/tabasics.py:461 -msgid "sets size of the line drawn by the turtle" -msgstr "fija el ancho de la línea que la tortuga dibuja" +#~ msgid "store a personalized calibration" +#~ msgstr "almacena una calibración personalizada" -#: TurtleArtActivity.py:1005 turtleblocks.py:402 -msgid "Open" -msgstr "Abrir" +#~ msgid "return a personalized calibration" +#~ msgstr "devuelve una calibración personalizada" -#: TurtleArt/tawindow.py:1142 TurtleArt/tawindow.py:1143 -msgid "orientation" -msgstr "orientación" +#~ msgid "follow" +#~ msgstr "seguir" -#: TurtleArt/tabasics.py:256 TurtleArt/tawindow.py:4302 -msgid "ycor" -msgstr "coory" +#~ msgid "follow a color or calibration" +#~ msgstr "seguir un color o calibración" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585 -msgid "" -"a programmable block: used to add advanced multi-variable math equations, e." -"g., sqrt(x*x+y*y)" -msgstr "" -"un bloque programable: utilizado para agregar ecuaciones matemáticas " -"avanzadas de múltiples variables, i.e., sqrt(x*x+y*y)" +#~ msgid "set the camera brightness as a value between 0 to 255." +#~ msgstr "establece el brillo de la cámara como un valor entre 0 y 255." -#: TurtleArt/tabasics.py:832 TurtleArt/tabasics.py:845 -msgid "if" -msgstr "si" +#~ msgid "minimum pixels" +#~ msgstr "mínimo de pixeles" -#: TurtleArt/tabasics.py:216 TurtleArt/tabasics.py:294 -msgid "" -"moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." -msgstr "" -"mueve la tortuga a la posición xcor, ycor; (0, 0) está en el centro de la " -"pantalla." +#~ msgid "set the minimal number of pixels to follow" +#~ msgstr "define el mínimo número de píxeles a seguir" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:567 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:581 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595 -msgid "Python" -msgstr "Python" +#~ msgid "threshold" +#~ msgstr "umbral" -#: TurtleArtActivity.py:785 turtleblocks.py:455 -msgid "Stop" -msgstr "Parar" +#~ msgid "set a threshold for a RGB color" +#~ msgstr "define el umbral para un color RGB" -#: TurtleArt/tabasics.py:1026 TurtleArt/tabasics.py:1046 -msgid "action 2" -msgstr "acción 2" +#~ msgid "camera mode" +#~ msgstr "modo de cámara" -#: TurtleArt/tabasics.py:1017 TurtleArt/tabasics.py:1036 -msgid "action 1" -msgstr "acción 1" +#~ msgid "set the color mode of the camera: RGB; YUV or HSV" +#~ msgstr "establece el modo de color de la cámara: RGB, YUV o HSV" -#: TurtleArt/tabasics.py:483 -msgid "end fill" -msgstr "finalizar relleno" +#~ msgid "get brightness" +#~ msgstr "obtener brillo" -#: TurtleArtActivity.py:670 TurtleArtActivity.py:828 turtleblocks.py:433 -msgid "Copy" -msgstr "Copiar" +#~ msgid "get the brightness of the ambient light" +#~ msgstr "obtiene el brillo de la luz ambiente" -#: TurtleArtActivity.py:672 TurtleArtActivity.py:829 turtleblocks.py:434 -msgid "Paste" -msgstr "Pegar" +#~ msgid "average color" +#~ msgstr "color promedio" -#: TurtleArt/talogo.py:513 -msgid "did not output to" -msgstr "no pudo escribir en" +#~ msgid "" +#~ "if set to 0 then color averaging is off during calibration; for other values " +#~ "it is on" +#~ msgstr "" +#~ "Si está en 0 entonces el color promedio está apagado durante la calibración; " +#~ "para otros valores está encendido" -#: gnome_plugins/collaboration_plugin.py:116 -msgid "Activities" -msgstr "Actividades" +#~ msgid "x position" +#~ msgstr "posición x" -#: gnome_plugins/uploader_plugin.py:68 -msgid "Upload to Web" -msgstr "Enviar a la Web" +#~ msgid "return x position" +#~ msgstr "retorna la posición x" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:475 -msgid "empty heap" -msgstr "vaciar pila" +#~ msgid "y position" +#~ msgstr "posición y" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:493 -msgid "pops value off FILO (first-in last-out heap)" -msgstr "saca el valor de la pila FILO (primero en entrar, último en salir)" +#~ msgid "return y position" +#~ msgstr "retorna la posición y" -#: TurtleArtActivity.py:777 TurtleArtActivity.py:1060 turtleblocks.py:451 -msgid "Clean" -msgstr "Limpiar" +#~ msgid "pixels" +#~ msgstr "píxeles" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:805 -msgid "Palette of presentation templates" -msgstr "Paleta de plantillas de presentaciones" +#~ msgid "return the number of pixels of the biggest blob" +#~ msgstr "devuelve el número de píxeles de la mancha mas grande" -#: TurtleArt/tabasics.py:197 -msgid "angle" -msgstr "ángulo" +#~ msgid "set the color mode of the camera to RGB" +#~ msgstr "establece el modo de color de la cámara a RGB" -#: TurtleArt/tabasics.py:666 -msgid "identity" -msgstr "identidad" +#~ msgid "set the color mode of the camera to YUV" +#~ msgstr "establece el modo de color de la cámara a YUV" -#: TurtleArtActivity.py:662 TurtleArtActivity.py:773 TurtleArtActivity.py:802 -#: TurtleArtActivity.py:804 TurtleArtActivity.py:981 -msgid "Save/Load" -msgstr "Guardar/Cargar" +#~ msgid "set the color mode of the camera to HSV" +#~ msgstr "establece el modo de color de la cámara a HSV" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:971 -msgid "top y" -msgstr "arriba y" +#~ msgid "empty calibration" +#~ msgstr "calibración vacía" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:145 -msgid "audio" -msgstr "audio" +#~ msgid "error in string conversion" +#~ msgstr "error en la conversión de la cadena de texto" -#: turtleblocks.py:448 -msgid "Tools" -msgstr "Herramientas" +#~ msgid "SumBot" +#~ msgstr "SumBot" -#: gnome_plugins/collaboration_plugin.py:295 -msgid "Port" -msgstr "Puerto" +#~ msgid "speed SumBot" +#~ msgstr "velocidad SumBot" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527 -msgid "comment" -msgstr "comentar" +#~ msgid "submit the speed to the SumBot" +#~ msgstr "setea la velocidad del SumBot" -#: TurtleArt/tabasics.py:630 -msgid "subtracts bottom numeric input from top numeric input" -msgstr "sustrae la entrada numérica de abajo de la entrada numérica de arriba" +#~ msgid "set the default speed for the movement commands" +#~ msgstr "setea la velocidad por defecto para los comandos de movimiento" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272 -msgid "media pause" -msgstr "pausar medios" +#~ msgid "forward SumBot" +#~ msgstr "adelante SumBot" -#: pysamples/forward_push.py:48 -msgid "push destination rgb value to heap" -msgstr "empujar el valor rgb de destino a la pila" +#~ msgid "move SumBot forward" +#~ msgstr "mueve el SumBot hacia adelante" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365 -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)" +#~ msgid "backward SumBot" +#~ msgstr "atrás SumBot" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660 -msgid "Cartesian" -msgstr "Cartesiana" +#~ msgid "move SumBot backward" +#~ msgstr "mueve el SumBot hacia atrás" -#: TurtleArt/tabasics.py:161 -msgid "clears the screen and reset the turtle" -msgstr "limpia la pantalla y restaura la tortuga" +#~ msgid "stop SumBot" +#~ msgstr "detener SumBot" -#: plugins/audio_sensors/audio_sensors.py:84 -#: plugins/audio_sensors/audio_sensors.py:99 -msgid "raw microphone input signal" -msgstr "señal de entrada de micrófono" +#~ msgid "stop the SumBot" +#~ msgstr "detiene el SumBot" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:421 -msgid "returns the color that the turtle \"sees\"" -msgstr "muestra el color que \"ve\" la tortuga" +#~ msgid "left SumBot" +#~ msgstr "izquierda SumBot" -#: TurtleArt/tabasics.py:1039 -msgid "invokes Action 1 stack" -msgstr "invocar la pila de acción 1" +#~ msgid "turn left the SumBot" +#~ msgstr "gira el SumBot hacia la izquierda" -#: TurtleArt/tabasics.py:126 -msgid "Palette of turtle commands" -msgstr "Paleta de comandos de la tortuga" +#~ msgid "right SumBot" +#~ msgstr "derecha SumBot" -#: TurtleArt/tabasics.py:814 -msgid "loops forever" -msgstr "repetir para siempre" +#~ msgid "turn right the SumBot" +#~ msgstr "gira el SumBot hacia la derecha" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:202 -msgid "show aligned" -msgstr "mostrar alineados" +#~ msgid "angle to center" +#~ msgstr "ángulo al centro" -#: TurtleArtActivity.py:1328 -#, python-format -msgid "Do you want to reinstall %s?" -msgstr "¿Desea reinstalar %s?" +#~ msgid "get the angle to the center of the dohyo" +#~ msgstr "obtiene el ángulo al centro del dohyo" -#: TurtleArtActivity.py:807 TurtleArtActivity.py:1008 -#: TurtleArtActivity.py:1030 turtleblocks.py:403 -msgid "Load project" -msgstr "Cargar proyecto" +#~ msgid "angle to Enemy" +#~ msgstr "ángulo al Enemigo" -#: TurtleArtActivity.py:656 TurtleArtActivity.py:776 -msgid "Project" -msgstr "Proyecto" +#~ msgid "get the angle to the Enemy" +#~ msgstr "obtiene el ángulo al Enemigo" -#: turtleblocks.py:454 -msgid "Debug" -msgstr "Depurar" +#~ msgid "x coor. SumBot" +#~ msgstr "coor. x SumBot" -#: TurtleArtActivity.py:325 TurtleArtActivity.py:702 TurtleArtActivity.py:857 -msgid "Turn off hover help" -msgstr "Deshabilitar ayuda flotante" +#~ msgid "get the x coordinate of the SumBot" +#~ msgstr "obtiene la coordenada x del Sumbot" -#: TurtleArt/tabasics.py:676 TurtleArt/tabasics.py:677 -msgid "mod" -msgstr "mod" +#~ msgid "y coor. SumBot" +#~ msgstr "coor. y SumBot" -#: gnome_plugins/collaboration_plugin.py:297 -msgid "Password" -msgstr "Contraseña" +#~ msgid "get the y coordinate of the SumBot" +#~ msgstr "obtiene la coordenada y del Sumbot" -#: TurtleArt/tabasics.py:875 -msgid "vertical space" -msgstr "espacio vertical" +#~ msgid "x coor. Enemy" +#~ msgstr "coor. x Enemigo" -#: TurtleArtActivity.py:1309 -msgid "Please restart Turtle Art in order to use the plugin." -msgstr "Reinicie TortugArte para poder usar el plugin." +#~ msgid "get the x coordinate of the Enemy" +#~ msgstr "obtiene la coordenada x del Enemigo" -#: TurtleArt/tabasics.py:485 -msgid "completes filled polygon (used with start fill block)" -msgstr "" -"completa el polígono relleno (utilizado con comenzar relleno del bloque)" +#~ msgid "y coor. Enemy" +#~ msgstr "coor. y Enemigo" -#: gnome_plugins/collaboration_plugin.py:124 -msgid "Share" -msgstr "Compartir" +#~ msgid "get the y coordinate of the Enemy" +#~ msgstr "obtiene la coordenada y del Enemigo" -#: TurtleArt/tabasics.py:736 -msgid "less than" -msgstr "menor que" +#~ msgid "rotation SumBot" +#~ msgstr "rotación SumBot" -#: TurtleArt/tabasics.py:689 -msgid "square root" -msgstr "raiz cuadrada" +#~ msgid "get the rotation of the Sumbot" +#~ msgstr "obtiene la rotación del SumBot" -#: turtleblocks.py:419 -msgid "Rescale coordinates" -msgstr "Escalar coordenadas" +#~ msgid "rotation Enemy" +#~ msgstr "rotación Enemigo" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:821 -msgid "show blocks" -msgstr "mostrar bloques" +#~ msgid "get the rotation of the Enemy" +#~ msgstr "obtiene la rotación del Enemigo" -#: turtleblocks.py:410 -msgid "Quit" -msgstr "Salir" +#~ msgid "distance to center" +#~ msgstr "distancia al centro" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:171 -msgid "Sugar Journal description field" -msgstr "campo de descripción del Diario de Sugar" +#~ msgid "get the distance to the center of the dohyo" +#~ msgstr "obtiene la distancia al centro del dohyo" -#: TurtleArt/tabasics.py:375 -msgid "set gray" -msgstr "establecer gris" +#~ msgid "distance to Enemy" +#~ msgstr "distancia al Enemigo" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:844 -msgid "presentation bulleted list" -msgstr "presentación con lista de viñetas" +#~ msgid "get the distance to the Enemy" +#~ msgstr "obtiene la distancia al Enemigo" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299 -msgid "duration" -msgstr "duración" +#~ msgid "update information" +#~ msgstr "actualizar información" -#: turtleblocks.py:397 -msgid "New" -msgstr "Nuevo" +#~ msgid "update information from the server" +#~ msgstr "actualiza la información desde el servidor" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 -msgid "places a comment in your code" -msgstr "coloca un comentario en tu código" +#~ msgid "Palette of physics blocks" +#~ msgstr "Paleta de bloques de física" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:408 -msgid "read pixel" -msgstr "leer pixel" +#~ msgid "start polygon" +#~ msgstr "comenzar polígono" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 -msgid "scale" -msgstr "escala" +#~ msgid "Begin defining a new polygon based on the current Turtle xy position." +#~ msgstr "" +#~ "Comienza a definir un nuevo polígono basado en la posición actual xy de la " +#~ "Tortuga." -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902 -msgid "bottom" -msgstr "debajo" +#~ msgid "add point" +#~ msgstr "agregar punto" -#: TurtleArt/tabasics.py:524 -msgid "purple" -msgstr "morado" +#~ msgid "" +#~ "Add a new point to the current polygon based on the current Turtle xy " +#~ "position." +#~ msgstr "" +#~ "Agrega un nuevo punto al polígono actual basado en la posición actual xy de " +#~ "la Tortuga." -#: TurtleArtActivity.py:518 -msgid "Rescale coordinates down" -msgstr "Escalar coordenadas hacia abajo" +# finalizar polígono +#~ msgid "end polygon" +#~ msgstr "terminar polígono" -#: TurtleArt/tautils.py:593 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:748 -msgid "click to open" -msgstr "clic para abrir" +#~ msgid "Define a new polygon." +#~ msgstr "Define un nuevo polígono." -#: plugins/audio_sensors/audio_sensors.py:120 -#: plugins/audio_sensors/audio_sensors.py:128 -msgid "microphone input pitch" -msgstr "" -"frecuencia de la componente más intensa del sonido presente en la entrada de " -"micrófono" +#~ msgid "end filled polygon" +#~ msgstr "termina polígono relleno" -#: gnome_plugins/collaboration_plugin.py:125 -msgid "Configuration" -msgstr "Configuración" +#~ msgid "Not a simple polygon" +#~ msgstr "No es un polígono simple" -#: gnome_plugins/uploader_plugin.py:130 -msgid "Description:" -msgstr "Descripción:" +#~ msgid "Define a new filled polygon." +#~ msgstr "Define un nuevo polígono relleno." -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:134 -msgid "journal" -msgstr "diario" +#~ msgid "triangle" +#~ msgstr "triángulo" -#: TurtleArt/tabasics.py:1063 -msgid "empty trash" -msgstr "vaciar papelera" +#~ msgid "base" +#~ msgstr "base" -#: TurtleArt/tabasics.py:438 -msgid "Turtle will draw when moved." -msgstr "La tortuga dibujará cuando se mueva." +#~ msgid "Add a triangle object to the project." +#~ msgstr "Agrega un objeto triángulo al proyecto." -#: TurtleArt/tautils.py:300 -msgid "Load..." -msgstr "Cargar..." +#~ msgid "circle" +#~ msgstr "círculo" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:147 -msgid "Sugar Journal audio object" -msgstr "objeto de audio del Diario de Sugar" +#~ msgid "Add a circle object to the project." +#~ msgstr "Agrega un objeto círculo al proyecto." -#: TurtleArt/talogo.py:374 TurtleArt/tawindow.py:1457 TurtleArtActivity.py:780 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1478 -msgid "Stop turtle" -msgstr "Parar tortuga" +#~ msgid "rectangle" +#~ msgstr "rectángulo" -#: turtleblocks.py:456 -msgid "Turtle" -msgstr "Tortuga" +#~ msgid "Add a rectangle object to the project." +#~ msgstr "Agrega un objeto rectángulo al proyecto." -#: TurtleArt/tapalette.py:99 -msgid "changes the orientation of the palette of blocks" -msgstr "cambia la orientación de la paleta de bloques" +#~ msgid "reset" +#~ msgstr "resetear" -#: TurtleArt/tabasics.py:988 TurtleArt/tawindow.py:4643 -msgid "store in" -msgstr "guardar en" +#~ msgid "Reset the project; clear the object list." +#~ msgstr "Resetea el proyecto; limpia la lista de objetos." -#: TurtleArt/talogo.py:388 TurtleArtActivity.py:396 TurtleArtActivity.py:1066 -msgid "Hide blocks" -msgstr "Ocultar bloques" +#~ msgid "motor" +#~ msgstr "motor" -#: TurtleArtActivity.py:811 TurtleArtActivity.py:1016 -#: TurtleArtActivity.py:1038 -msgid "Load Python block" -msgstr "Cargar bloque Python" +#~ msgid "torque" +#~ msgstr "torque" -#: TurtleArt/tabasics.py:615 -msgid "plus" -msgstr "sumar" +#~ msgid "speed" +#~ msgstr "velocidad" -#: TurtleArt/tabasics.py:779 TurtleArt/tabasics.py:782 -msgid "or" -msgstr "o" +#~ msgid "" +#~ "Motor torque and speed range from 0 (off) to positive numbers; motor is " +#~ "placed on the most recent object created." +#~ msgstr "" +#~ "El torque y velocidad del motor están en el rango que va de 0 (apagado) a " +#~ "números positivos; el motor es colocado en el objeto creado mas " +#~ "recientemente." -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:852 -msgid "presentation template: list of bullets" -msgstr "plantilla de presentación: lista de viñetas" +# puede ser: alfiler, perno, clavija, clavo - En Physics es: Tachuela (asi que por coherencia, usé Tachuela) +#~ msgid "pin" +#~ msgstr "tachuela" -#: TurtleArt/tabasics.py:668 -msgid "identity operator used for extending blocks" -msgstr "operador de identidad usado para extender bloques" +#~ msgid "Pin an object down so that it cannot fall." +#~ msgstr "Sujeta un objeto para que no se caiga." -#: TurtleArtActivity.py:699 TurtleArtActivity.py:856 turtleblocks.py:423 -msgid "Shrink blocks" -msgstr "Empequeñecer bloques" +# enPhysics es unión... podría ser articulación +#~ msgid "joint" +#~ msgstr "unión" -#: TurtleArt/tabasics.py:271 -msgid "" -"holds current heading value of the turtle (can be used in place of a number " -"block)" -msgstr "" -"contiene la orientación actual de la tortuga (se puede usar en vez de un " -"bloque de número)" +#~ msgid "" +#~ "Join two objects together (the most recent object created and the object at " +#~ "point x, y)." +#~ msgstr "" +#~ "Une dos objetos (el objeto creado mas reciententemente y el objeto en el " +#~ "punto x, y)." -#: TurtleArt/tawindow.py:4424 -msgid "image" -msgstr "imagen" +#~ msgid "save as Physics activity" +#~ msgstr "guardar como Actividad Física" -#: TurtleArt/tabasics.py:703 -msgid "returns random number between minimum (top) and maximum (bottom) values" -msgstr "" -"devuelve un número aleatorio entre los valores mínimo (arriba) y máximo " -"(abajo)" +#~ msgid "Save the project to the Journal as a Physics activity." +#~ msgstr "Guarda el proyecto al Diario como una Actividad de Física." -#: TurtleArt/tabasics.py:389 -msgid "holds current pen color (can be used in place of a number block)" -msgstr "" -"contiene el color actual de la pluma (se puede usar en vez de un bloque de " -"número)" +#~ msgid "gear" +#~ msgstr "círculo" -#: TurtleArtActivity.py:344 turtleblocks.py:442 -msgid "Show palette" -msgstr "Mostrar paleta" +#~ msgid "Add a gear object to the project." +#~ msgstr "Agrega un objeto engranaje al proyecto." -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:230 -msgid "saves a picture to the Sugar Journal" -msgstr "guarda una imagen en el Diario de Azúcar" +#~ msgid "density" +#~ msgstr "densidad" -#: TurtleArtActivity.py:280 TurtleArtActivity.py:740 TurtleArtActivity.py:782 -#: TurtleArtActivity.py:995 TurtleArtActivity.py:1028 -msgid "Save snapshot" -msgstr "Guardar instantánea" +#~ msgid "" +#~ "Set the density property for objects (density can be any positive number)." +#~ msgstr "" +#~ "Establece la densidad de los objetos (la densidad puede ser cualquier número " +#~ "positivo)." -#: TurtleArt/tabasics.py:901 pysamples/grecord.py:214 -msgid "start" -msgstr "empezar" +#~ msgid "friction" +#~ msgstr "fricción" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:507 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:517 -msgid "returns True if heap is empty" -msgstr "devuelve Verdadero si la pila está vacía" +#~ msgid "" +#~ "Set the friction property for objects (value from 0 to 1, where 0 turns " +#~ "friction off and 1 is strong friction)." +#~ msgstr "" +#~ "Establece la propiedad de fricción de los objetos (un valor entre 0 y 1, " +#~ "donde 0 es sin fricción y el 1 es fuerte)." -#: TurtleArt/tabasics.py:135 -msgid "moves turtle forward" -msgstr "mueve la tortuga hacia adelante" +# podría ser elasticidad? +#~ msgid "bounciness" +#~ msgstr "restitución" -#: TurtleArt/tabasics.py:131 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:770 -msgid "forward" -msgstr "adelante" +# very bouncy = muy restituible? +#~ msgid "" +#~ "Set the bounciness property for objects (a value from 0 to 1, where 0 means " +#~ "no bounce and 1 is very bouncy)." +#~ msgstr "" +#~ "Establece la propiedad de restitución para los objetos (un valor entre 0 y " +#~ "1, donde 0 significa sin restitución y 1 mucha)." -#: TurtleArt/tabasics.py:992 TurtleArt/tabasics.py:1007 -#: TurtleArt/tawindow.py:1500 TurtleArt/tawindow.py:1633 -#: TurtleArt/tawindow.py:2231 TurtleArt/tawindow.py:4604 -#: TurtleArt/tawindow.py:4634 -msgid "my box" -msgstr "mi caja" +#~ msgid "dynamic" +#~ msgstr "dinámico" -#: gnome_plugins/collaboration_plugin.py:291 -msgid "Account ID" -msgstr "Cuenta" +#~ msgid "" +#~ "If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +#~ msgstr "" +#~ "Si dinámico = 1, el objeto puede moverse; si dinámico = 0, queda fijo en su " +#~ "posición." -#: TurtleArt/tawindow.py:1514 -msgid "Select blocks to share" -msgstr "Selecciona bloques para compartir" +#~ msgid "Palette of WeDo blocks" +#~ msgstr "Paleta de bloques WeDo" -#: TurtleArt/tabasics.py:144 -msgid "back" -msgstr "atrás" +#~ msgid "WeDo" +#~ msgstr "WeDo" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:219 -msgid "sets the scale of media" -msgstr "fijar la escala de medios" +#~ msgid "set current WeDo device" +#~ msgstr "setea el dispositivo WeDo actual" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252 -msgid "holds current scale value" -msgstr "mantiene el valor actual de la escala" +#~ msgid "number of WeDo devices" +#~ msgstr "número de dispositivos WeDo" -#: TurtleArt/tabasics.py:923 -msgid "top of nameable action stack" -msgstr "cima de la pila de acción nombrable" +#~ msgid "" +#~ "tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +#~ "tilt left, 2 == tilt right)" +#~ msgstr "" +#~ "salida del sensor de inclinación: (-1 == no está inclinado, 0 == inclinado " +#~ "hacia adelante, 3 == inclinado hacia atrás, 1 == inclinado hacia la " +#~ "izquierda, 2 == inclinado hacia la derecha)" -#: TurtleArt/tabasics.py:993 TurtleArt/tawindow.py:4648 -msgid "stores numeric value in named variable" -msgstr "guarda valor numérico en la variable nombrada" +#~ msgid "distance sensor output" +#~ msgstr "salida del sensor distancia" -#: TurtleArt/tabasics.py:783 -msgid "logical OR operator" -msgstr "operador O lógico" +#~ msgid "Motor A" +#~ msgstr "Motor A" -#: plugins/audio_sensors/audio_sensors.py:158 -#: plugins/audio_sensors/audio_sensors.py:172 -#: plugins/audio_sensors/audio_sensors.py:186 -#: plugins/audio_sensors/audio_sensors.py:200 -msgid "microphone input voltage" -msgstr "" -"valor del voltaje DC conectado a la entrada de micrófono (rango: 0.40 a 1.90 " -"V)" +#~ msgid "returns the current value of Motor A" +#~ msgstr "devuelve el valor actual del Motor A" -#: TurtleArt/tabasics.py:826 -msgid "loops specified number of times" -msgstr "repite el número especificado de veces" +#~ msgid "Motor B" +#~ msgstr "Motor B" -#: TurtleArt/tautils.py:310 -msgid "Save..." -msgstr "Guardar..." +#~ msgid "returns the current value of Motor B" +#~ msgstr "devuelve el valor actual del Motor B" -#: TurtleArt/tabasics.py:1049 -msgid "invokes Action 2 stack" -msgstr "invocar la pila de acción 2" +#~ msgid "set the value for Motor A" +#~ msgstr "setea el valor del Motor A" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:782 -msgid "setxy" -msgstr "fijar xy" +#~ msgid "set the value for Motor B" +#~ msgstr "setea el valor del Motor B" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:953 -msgid "title y" -msgstr "título y" +#~ msgid "WeDo is unavailable" +#~ msgstr "WeDo no está disponible" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:944 -msgid "title x" -msgstr "título x" +#, python-format +#~ msgid "WeDo %d is unavailable; defaulting to 1" +#~ msgstr "Wedo %d no está disponible; usando por defecto el 1" -#: TurtleArt/tabasics.py:317 TurtleArt/tabasics.py:330 -msgid "fill screen" -msgstr "rellenar pantalla" +#, python-format +#~ msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +#~ msgstr "%(device)s no está disponible en el WeDo %(wedo_number)d" -#: pysamples/journal-stats.py:80 -msgid "other" -msgstr "otros" +#~ msgid "Palette of LEGO NXT blocks of motors" +#~ msgstr "Paleta de bloques LEGO NXT de motores" -#: turtleblocks.py:405 -msgid "Save as" -msgstr "Guardar como" +#~ msgid "Palette of LEGO NXT blocks of sensors" +#~ msgstr "Paleta de bloques LEGO NXT de sensores" -#: TurtleArt/tabasics.py:212 TurtleArt/tabasics.py:290 -msgid "set xy" -msgstr "fijar xy" +#~ msgid "touch" +#~ msgstr "botón" -#: TurtleArt/tabasics.py:1055 TurtleArt/tabasics.py:1059 -#: TurtleArt/tapalette.py:138 TurtleArt/tapalette.py:139 -msgid "trash" -msgstr "basura" +#~ msgid "ultrasonic" +#~ msgstr "distancia" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:668 -msgid "polar" -msgstr "polar" +#~ msgid "light" +#~ msgstr "luz" -#: TurtleArt/tabasics.py:821 TurtleArt/tabasics.py:825 -msgid "repeat" -msgstr "repetir" +#~ msgid "grey" +#~ msgstr "gris" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 -msgid "wait for current video or audio to complete" -msgstr "esperar hasta completar el audio o vídeo" +#~ msgid "Please check the connection with the brick" +#~ msgstr "Por favor chequee la conexión con el brick" -#: TurtleArtActivity.py:264 TurtleArtActivity.py:805 TurtleArtActivity.py:986 -#: TurtleArtActivity.py:1022 turtleblocks.py:406 -msgid "Save as image" -msgstr "Guardar como imagen" +#, python-format +#~ msgid "Invalid port '%s'. Port must be: PORT A, B or C" +#~ msgstr "Puerto '%s' inválido. El puerto debe ser: PUERTO A, B o C" -#: TurtleArtActivity.py:625 TurtleArtActivity.py:660 TurtleArtActivity.py:774 -#: TurtleArtActivity.py:827 turtleblocks.py:439 -msgid "Edit" -msgstr "Editar" +#, python-format +#~ msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +#~ msgstr "Puerto '%s' inválido. El puerto debe ser: PUERTO 1, 2, 3 o 4" -#: plugins/audio_sensors/audio_sensors.py:152 -#: plugins/audio_sensors/audio_sensors.py:166 -#: plugins/audio_sensors/audio_sensors.py:180 -#: plugins/audio_sensors/audio_sensors.py:194 -msgid "microphone input resistance" -msgstr "" -"valor de la resistencia conectada a la entrada de micrófono (rango de " -"medición: 700 a 14000 ohms)" +#~ msgid "The value of power must be between -127 to 127" +#~ msgstr "El valor de potencia debe estar entre -127 y 127" -#: TurtleArt/tabasics.py:1029 -msgid "top of Action 2 stack" -msgstr "primero de la pila de Acción 2" +#, python-format +#, python-format, +#~ msgid "The parameter must be a integer, not '%s'" +#~ msgstr "El parámetro debe ser un entero, no '%s'" -#: TurtleArt/tabasics.py:656 -msgid "" -"divides top numeric input (numerator) by bottom numeric input (denominator)" -msgstr "" -"divide la entrada numérica de arriba (numerador) por la entrada numérica de " -"bajo (denominador)" +#~ msgid "An error has occurred: check all connections and try to reconnect" +#~ msgstr "Un error ha ocurrido: chequee todas las conexiones y pruebe reconectar" -#: TurtleArt/tabasics.py:699 -msgid "max" -msgstr "max" +#, python-format +#~ msgid "NXT found %s bricks" +#~ msgstr "NXT encontró %s bricks" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540 -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" +#~ msgid "NXT not found" +#~ msgstr "NXT no encontrado" -#: TurtleArt/tabasics.py:472 -msgid "start fill" -msgstr "comenzar a rellenar" +#, python-format +#, python-format, +#~ msgid "Brick number %s was not found" +#~ msgstr "El brick número %s no fue encontrado" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376 -msgid "holds results of query-keyboard block as ASCII" -msgstr "contiene los resultados del bloque de consulta de teclado como ASCII" +#~ msgid "refresh NXT" +#~ msgstr "refrescar NXT" -#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# -#. TRANS: push adds a new item to the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:449 -msgid "push" -msgstr "empujar" +#~ msgid "Search for a connected NXT brick." +#~ msgstr "Busca por un brick NXT conectado." -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:599 -msgid "" -"a programmable block: used to add advanced multi-variable math equations, e." -"g., sin(x+y+z)" -msgstr "" -"un bloque programable: utilizado para añadir ecuaciones matemáticas " -"avanzadas multivariables, p.e. seno(x+y+z)" +#~ msgid "NXT" +#~ msgstr "NXT" -#: TurtleArt/tabasics.py:1068 -msgid "restore all" -msgstr "restaurar todo" +#~ msgid "set current NXT device" +#~ msgstr "establece el dispositivo NXT actual" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:289 -msgid "hello" -msgstr "hola" +#~ msgid "number of NXT devices" +#~ msgstr "número de dispositivos NXT" -#. TRANS: "name" option from activity.info file -msgid "TurtleBlocks" -msgstr "TortuBlocks" +#~ msgid "brick name" +#~ msgstr "nombre del brick" -#: TurtleArt/tabasics.py:308 -msgid "pen" -msgstr "pluma" +#~ msgid "Get the name of a brick." +#~ msgstr "Obtiene el nombre del brick." -#: TurtleArt/tabasics.py:347 -msgid "set color" -msgstr "fijar color" +#~ msgid "play tone" +#~ msgstr "reproducir tono" -#: TurtleArt/tabasics.py:447 -msgid "pen down?" -msgstr "¿pluma baja?" +#~ msgid "frequency" +#~ msgstr "frecuencia" -#: TurtleArt/tabasics.py:449 -msgid "returns True if pen is down" -msgstr "devuelve Verdadero si la pluma está baja" +#~ msgid "Play a tone at frequency for time." +#~ msgstr "Reproduce un tono a cierta frecuencia por un determinado tiempo." -#: TurtleArt/tabasics.py:510 -msgid "colors" -msgstr "colores" +#~ msgid "" +#~ "turn motor\n" +#~ "\n" +#~ msgstr "" +#~ "girar motor\n" +#~ "\n" -#: TurtleArt/tabasics.py:605 -msgid "numbers" -msgstr "números" +#~ msgid "port" +#~ msgstr "puerto" -#: TurtleArt/tabasics.py:790 -msgid "flow" -msgstr "flujo" +#~ msgid "power" +#~ msgstr "potencia" -#: TurtleArt/tabasics.py:892 -msgid "blocks" -msgstr "bloques" +#~ msgid "rotations" +#~ msgstr "rotaciones" -#: TurtleArt/tawindow.py:1461 -msgid "Please hit the Stop Button before making changes to your program" -msgstr "Por favor, pulsa el Botón Detener antes de hacer cambios a tu programa" +#~ msgid "turn a motor" +#~ msgstr "gira un motor" -#: TurtleArt/tawindow.py:1678 TurtleArtActivity.py:677 -#: TurtleArtActivity.py:830 turtleblocks.py:435 -msgid "Save stack" -msgstr "Guardar pila" +#~ msgid "" +#~ "synchronize\n" +#~ "\n" +#~ "motors" +#~ msgstr "" +#~ "sincronizar\n" +#~ "\n" +#~ "motores" -#: TurtleArt/tawindow.py:1679 TurtleArt/tawindow.py:1693 -msgid "Really overwrite stack?" -msgstr "¿Desea sobrescribir la pila?" +#~ msgid "steering" +#~ msgstr "dirección" -#: TurtleArt/tawindow.py:1686 TurtleArt/tawindow.py:1696 -msgid "Overwrite stack" -msgstr "Sobrescribir pila" +#~ msgid "synchronize two motors connected in PORT B and PORT C" +#~ msgstr "sincroniza dos motores conectados en el PUERTO B y PUERTO C" -#: TurtleArt/tawindow.py:1717 TurtleArt/tawindow.py:1725 -#: TurtleArt/tawindow.py:1734 TurtleArtActivity.py:679 turtleblocks.py:437 -msgid "Delete stack" -msgstr "Borrar pila" +#~ msgid "PORT A" +#~ msgstr "PUERTO A" -#: TurtleArt/tawindow.py:1718 TurtleArt/tawindow.py:1731 -msgid "Really delete stack?" -msgstr "¿Desea eliminar la pila?" +#~ msgid "PORT A of the brick" +#~ msgstr "PUERTO A del brick" -#: TurtleArtActivity.py:958 -msgid "Palettes" -msgstr "Paletas" +#~ msgid "PORT B" +#~ msgstr "PUERTO B" -#: gnome_plugins/fb_plugin.py:87 -msgid "Facebook wall post" -msgstr "Muro de Facebook" +#~ msgid "PORT B of the brick" +#~ msgstr "PUERTO B del brick" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:123 -msgid "media" -msgstr "medios" +#~ msgid "PORT C" +#~ msgstr "PUERTO C" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:438 -msgid "extras" -msgstr "extras" +#~ msgid "PORT C of the brick" +#~ msgstr "PUERTO C del brick" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:688 -msgid "turtle x" -msgstr "tortuga x" +#~ msgid "start motor" +#~ msgstr "iniciar motor" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:691 -msgid "Returns x coordinate of turtle" -msgstr "Devuelve la coordenada x de la tortuga" +#~ msgid "Run a motor forever." +#~ msgstr "Girar un motor por siempre." -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:698 -msgid "turtle y" -msgstr "tortuga y" +#~ msgid "brake motor" +#~ msgstr "frenar motor" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701 -msgid "Returns y coordinate of turtle" -msgstr "Devuelve la coordenada y de la tortuga" +#~ msgid "Stop a specified motor." +#~ msgstr "Frena un motor específico." -#. TRANS: pop removes a new item from the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:709 -msgid "active turtle" -msgstr "tortuga activa" +#~ msgid "reset motor" +#~ msgstr "reiniciar motor" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:712 -msgid "the name of the active turtle" -msgstr "nombre de la tortuga activa" +#~ msgid "Reset the motor counter." +#~ msgstr "Reinicia el contador del motor." -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:720 -msgid "turtle heading" -msgstr "rumbo tortuga" +#~ msgid "motor position" +#~ msgstr "posición del motor" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 -msgid "Returns heading of turtle" -msgstr "Devuelve el rumbo de la tortuga" +#~ msgid "Get the motor position." +#~ msgstr "Obtiene la posición del motor." -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:792 -msgid "select palette" -msgstr "seleccionar paleta" +#~ msgid "PORT 1" +#~ msgstr "PUERTO 1" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:801 -msgid "portfolio" -msgstr "cartera" +#~ msgid "PORT 1 of the brick" +#~ msgstr "PUERTO 1 del brick" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1002 -msgid "my blocks" -msgstr "mis bloques" +#~ msgid "read" +#~ msgstr "leer" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1007 -msgid "Palette of user-defined operators" -msgstr "Paleta de operaciones definidas por el usuario" +#~ msgid "Read sensor output." +#~ msgstr "Lee la salida del sensor." -#: pysamples/brain.py:43 -msgid "Please install the Speak Activity and try again." -msgstr "Por favor instala la Actividad Hablar e intenta de nuevo." +#~ msgid "PORT 2" +#~ msgstr "PUERTO 2" -#: pysamples/brain.py:52 -msgid "Spanish" -msgstr "Español" +#~ msgid "PORT 2 of the brick" +#~ msgstr "PUERTO 2 del brick" -#: pysamples/brain.py:56 pysamples/brain.py:69 pysamples/brain.py:71 -#: pysamples/brain.py:77 -msgid "English" -msgstr "Inglés" +#~ msgid "light sensor" +#~ msgstr "sensor de luz" -#: pysamples/brain.py:88 -msgid "Sorry, I can't understand what you are asking about." -msgstr "Lo siento, no puedo entender lo que estás preguntando." +#~ msgid "grey sensor" +#~ msgstr "sensor de grises" -#: pysamples/brain.py:97 -msgid "" -"Sorry, there is no free memory to load my brain. Close other activities and " -"try once more." -msgstr "" -"Lo siento, no hay memoria libre para cargar mi cerebro. Cierra otras " -"actividades e intenta una vez más." +#~ msgid "PORT 3" +#~ msgstr "PUERTO 3" -#: pysamples/uturn.py:37 -msgid "turns the turtle 180 degrees" -msgstr "gira la tortuga 180 grados" +#~ msgid "PORT 3 of the brick" +#~ msgstr "PUERTO 3 del brick" -#: turtleblocks.py:398 -msgid "Show sample projects" -msgstr "Mostrar proyectos de ejemplo" +#~ msgid "touch sensor" +#~ msgstr "sensor táctil" -#: turtleblocks.py:400 -msgid "Hide sample projects" -msgstr "Ocultar proyectos de ejemplo" +#~ msgid "distance sensor" +#~ msgstr "sensor de distancia" -#: turtleblocks.py:459 -msgid "About..." -msgstr "Acerca..." +#~ msgid "PORT 4" +#~ msgstr "PUERTO 4" -msgid "Please wait" -msgstr "Por favor espera" +#~ msgid "PORT 4 of the brick" +#~ msgstr "PUERTO 4 del brick" -msgid "Starting connection..." -msgstr "Conectando..." +#~ msgid "sound sensor" +#~ msgstr "sensor de sonido" -#~ msgid "touch" -#~ msgstr "botón" +#~ msgid "color sensor" +#~ msgstr "sensor de color" -#~ msgid "ultrasonic" -#~ msgstr "distancia" +#~ msgid "set light" +#~ msgstr "prender luz" -#~ msgid "touch sensor" -#~ msgstr "sensor táctil" +#~ msgid "Set color sensor light." +#~ msgstr "Prende la luz del sensor de color." -#~ msgid "custom module sensor A" -#~ msgstr "módulo de sensor personalizado A" +#~ msgid "battery level" +#~ msgstr "nivel de batería" -#~ msgid "custom module sensor B" -#~ msgstr "módulo de sensor personalizado B" +#~ msgid "Get battery level of the brick" +#~ msgstr "Obtiene el nivel de batería del brick" -#~ msgid "custom module sensor C" -#~ msgstr "módulo de sensor personalizado C" +#~ msgid "HIGH" +#~ msgstr "ALTO" -#~ msgid "module a" -#~ msgstr "módulo a" +#~ msgid "LOW" +#~ msgstr "BAJO" -#~ msgid "module b" -#~ msgstr "módulo b" +#~ msgid "INPUT" +#~ msgstr "ENTRADA" -#~ msgid "module c" -#~ msgstr "módulo c" +#~ msgid "OUTPUT" +#~ msgstr "SALIDA" -#~ msgid "hack pin mode" -#~ msgstr "modo del hack pin" +#~ msgid "PWM" +#~ msgstr "PWM" -#~ msgid "read hack pin Butia" -#~ msgstr "leer en hack pin" +#~ msgid "SERVO" +#~ msgstr "SERVO" -#~ msgid "Module A" -#~ msgstr "Módulo A" +#~ msgid "ERROR: Check the Arduino and the number of port." +#~ msgstr "ERROR: Chequee la Arduino y el número de puerto." -#~ msgid "Module B" -#~ msgstr "Módulo B" +#~ msgid "ERROR: Value must be a number from 0 to 255." +#~ msgstr "ERROR: El valor debe ser un número entre 0 y 255." -#~ msgid "generic Module B" -#~ msgstr "Módulo B genérico" +#~ msgid "ERROR: Value must be either HIGH or LOW." +#~ msgstr "ERROR: El valor debe ser ALTO o BAJO." -#~ msgid "Module C" -#~ msgstr "Módulo C" +#~ msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +#~ msgstr "ERROR: El modo debe ser ENTRADA, SALIDA, PWM o SERVO." -#~ msgid "generic Module C" -#~ msgstr "Módulo C genérico" +#~ msgid "refresh Arduino" +#~ msgstr "refrescar Arduino" -#~ msgid "ERROR: You must cast Module A, B or C" -#~ msgstr "ERROR: Debes castear el Módulo A, B o C" +#~ msgid "Search for connected Arduinos." +#~ msgstr "Busca por Arduinos conectadas." -#~ msgid "returns the temperature" -#~ msgstr "devuelve la temperatura (grados celsius)" +#~ msgid "Arduino" +#~ msgstr "Arduino" -#~ msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" -#~ msgstr "" -#~ "devuelve 1 cuando el sensor detecta un campo magnético, 0 en otro caso" +#~ msgid "set current Arduino board" +#~ msgstr "establece la placa Arduino actual" -#~ msgid "gpio" -#~ msgstr "gpio" +#~ msgid "number of Arduinos" +#~ msgstr "número de Arduinos" -#~ msgid "Turn LED on and off: 0 is off; 1 is on" -#~ msgstr "Prende o apaga el LED; 0 es apagado, 1 prendido" +#~ msgid "number of Arduino boards" +#~ msgstr "número de placas" -#~ msgid "returns the gray level" -#~ msgstr "devuelve el nivel de gris" +#~ msgid "Arduino name" +#~ msgstr "nombre de Arduino" -#~ msgid "returns the light level" -#~ msgstr "devuelve el nivel de luz" +#~ msgid "Get the name of an Arduino." +#~ msgstr "Obtiene el nombre de la Arduino." -#~ msgid "returns the distance from the object in front of the sensor" -#~ msgstr "devuelve la distancia al objeto en frente del sensor" +#~ msgid "pin mode" +#~ msgstr "modo del pin" -#, fuzzy -#~ msgid "returns the value of the resistance" -#~ msgstr "" -#~ "#-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-#\n" -#~ "devuelve el valor de la resistencia\n" -#~ "#-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-#\n" -#~ "devuleve el valor de la resistencia" +#~ msgid "mode" +#~ msgstr "modo" -#~ msgid "returns the value of the voltage" -#~ msgstr "devuelve el valor del voltaje" +#~ msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +#~ msgstr "Selecciona la función del pin (ENTRADA, SALIDA, PWM, SERVO)." -#~ msgid "returns the battery charge as a number between 0 and 255" +#~ msgid "analog write" +#~ msgstr "escribir analógico" + +#~ msgid "Write analog value in specified port." +#~ msgstr "Escribe un valor analógico en el puerto especificado." + +#~ msgid "analog read" +#~ msgstr "leer analógico" + +#~ 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 "" -#~ "devuelve la carga de la batería del robot como un número entre 0 y 255" +#~ "Lee un valor desde un puerto analógico. El valor puede ser entre 0 y 1023. " +#~ "Use Vref para determinar el voltaje. Para USB, volt=((leer)*5/1024) " +#~ "aproximadamente." -#~ msgid "Get battery level of the brick" -#~ msgstr "Obtiene el nivel de batería del brick" +#~ msgid "digital write" +#~ msgstr "escribir digital" -#~ msgid "adjust LED intensity between 0 and 255" -#~ msgstr "ajusta la intensidad del LED entre 0 y 255" +#~ msgid "Write digital value to specified port." +#~ msgstr "Escribe un valor digital en un puerto específico." -#~ msgid "returns the ambient light level" -#~ msgstr "devuelve el nivel de luz en el ambiente" +#~ msgid "digital read" +#~ msgstr "leer digital" -#~ msgid "returns the ambient temperature" -#~ msgstr "devuelve la temperatura ambiente" +#~ msgid "Read value from digital port." +#~ msgstr "Lee un valor desde un puerto digital." -#~ msgid "returns 0 or 1 depending on the sensor inclination" -#~ msgstr "devuelve 0 o 1 dependiendo de la inclinación del sensor" +#~ msgid "Set HIGH value for digital port." +#~ msgstr "Setea el valor ALTO en el puerto digital." -#~ msgid "switches from 0 to 1, the frequency depends on the vibration" -#~ msgstr "oscila entre 0 y 1 dependiendo de la vibración" +#~ msgid "Configure Arduino port for digital input." +#~ msgstr "Configura el puerto de la Arduino como entrada digital." -#~ msgid "grayscale" -#~ msgstr "escala de gris" +#~ msgid "Configure Arduino port to drive a servo." +#~ msgstr "Configura el puerto de la Arduino para manejar un servo." -#~ msgid "ambient light" -#~ msgstr "luz ambiente" +#~ msgid "Set LOW value for digital port." +#~ msgstr "Setea el valor BAJO en el puerto digital." -#~ msgid "" -#~ "TurtleBlocks with some robot plugins: Butia, Lego NxT, WeDo, FollowMe" +#~ msgid "Configure Arduino port for digital output." +#~ msgstr "Configura el puerto de la Arduino como salida digital." + +#~ msgid "Configure Arduino port for PWM (pulse-width modulation)." #~ msgstr "" -#~ "TortuBlocks con varios plugin de robótica: Butiá, Lego NxT, WeDo, FollowMe" +#~ "Configura el puerto de la Arduino para PWM modulación por ancho de pulsos)." -#~ msgid "magnetic induction" -#~ msgstr "campo magnético" +#~ msgid "Palette of Expeyes blocks" +#~ msgstr "Paleta de bloques de Expeyes" -#~ msgid "vibration" -#~ msgstr "vibración" +#~ msgid "set PVS" +#~ msgstr "establecer PVS" -#~ msgid "move the Butia robot forward a predefined distance" -#~ msgstr "mueve el robot Butiá hacia adelante una distancia predefinida" +#~ msgid "set programmable voltage output" +#~ msgstr "establece el voltaje de salida programable" -#~ msgid "move the Butia robot backward a predefined distance" -#~ msgstr "mueve el robot Butiá hacia atrás una distancia predefinida" +#~ msgid "set SQR1 voltage" +#~ msgstr "establecer voltaje SQR1" -#~ msgid "turn Butia" -#~ msgstr "girar Butiá" +#~ msgid "set square wave 1 voltage output" +#~ msgstr "establece una onda cuadrada en el voltaje de salida" -#~ msgid "turn the Butia robot x degrees" -#~ msgstr "gira el robot Butiá x grados" +#~ msgid "set SQR2 voltage" +#~ msgstr "establecer voltaje SQR2" -#~ msgid "moves the Butia at specify speed motors" -#~ msgstr "mueve los motores del Butiá a la velocidad especificada" +#~ msgid "set square wave 2 voltage output" +#~ msgstr "establece una onda cuadrada en el voltaje de salida" -#~ msgid "grey" -#~ msgstr "gris" +#~ msgid "set OD1" +#~ msgstr "establecer OD1" -#, fuzzy -#~ msgid "returns the object gray level as a number between 0 and 1023" +#~ msgid "set digital output level (OD1) low (0) or high (1)" +#~ msgstr "establece el nivel de la salida digital (OD1) bajo (0) o alto (1)" + +#~ msgid "IN1 level" +#~ msgstr "nivel IN1" + +#~ msgid "" +#~ "returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +#~ "volts" #~ msgstr "" -#~ "#-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-#\n" -#~ "devuelve el nivel de luz de un objeto como un número entre 0 y 1023\n" -#~ "#-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-#\n" -#~ "devuelve el nivel de luz en el ambiente como un número entre 0 y 1023" +#~ "devuelve 1 si el voltaje de IN1 es mayor a 2,5 volts, 0 si el voltaje es <= " +#~ "2,5 volts" -#~ msgid "returns the ambient light level as a number between 0 and 1023" +#~ msgid "IN2 level" +#~ msgstr "nivel IN2" + +#~ msgid "" +#~ "returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +#~ "volts" #~ msgstr "" -#~ "devuelve el nivel de luz en el ambiente como un número entre 0 y 1023" +#~ "devuelve 1 si el voltaje de IN2 es mayor a 2,5 volts, 0 si el voltaje es <= " +#~ "2,5 volts" -#~ msgid "returns the ambient temperature as a number between 0 and 255" -#~ msgstr "devuelve la temperatura en el ambiente como un número entre 0 y 255" +#~ msgid "SEN level" +#~ msgstr "nivel SEN" #~ msgid "" -#~ "returns the distance from the object in front of the sensor as a number " -#~ "between 0 and 255" +#~ "returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +#~ "voltage level <= 2.5 volts" #~ msgstr "" -#~ "devuelve la distancia del objeto en frente al sensor como un número entre " -#~ "0 y 255" +#~ "devuelve 1 si el voltaje del sensor resistivo (SEN) es mayor a 2,5 volts, 0 " +#~ "si el voltaje es <= 2,5 volts" + +#~ msgid "capture" +#~ msgstr "capturar" + +#~ msgid "input" +#~ msgstr "entrada" + +#~ msgid "samples" +#~ msgstr "muestras" + +#~ msgid "interval" +#~ msgstr "intervalo" #~ msgid "" -#~ "set the speed of the Butia motors as a value between 0 and 1023, passed " -#~ "by an argument" +#~ "capture multiple samples from input at interval (MS); results pushed to FIFO" #~ msgstr "" -#~ "setea la velocidad de los motores del Butiá como un valor entre 0 y 1023 " -#~ "pasado por argumento" +#~ "captura múltiples muestras de la entrada en intervalos (MS); los resultados " +#~ "son puestos en FIFO" -#~ msgid "set text size" -#~ msgstr "fijar tamaño del texto" +#~ msgid "A1" +#~ msgstr "A1" -#~ msgid "set text color" -#~ msgstr "fijar el color del texto" +#~ msgid "read analog input 1 voltage" +#~ msgstr "lee el voltaje de la entrada analógica 1" -#~ msgid "presentation 2x1" -#~ msgstr "presentación 2x1" +#~ msgid "A2" +#~ msgstr "A2" -#~ msgid "sets color of text drawn by the turtle" -#~ msgstr "fija el color del texto dibujado por la tortuga" +#~ msgid "read analog input 2 voltage" +#~ msgstr "lee el voltaje de la entrada analógica 2" -#~ msgid "palette" -#~ msgstr "paleta" +#~ msgid "IN1" +#~ msgstr "IN1" -#~ msgid "presentation 2x2" -#~ msgstr "presentación 2x2" +#~ msgid "read input 1 voltage" +#~ msgstr "lee el voltaje de la entrada 1" -#~ msgid "make a uturn" -#~ msgstr "hacer una vuelta en U" +#~ msgid "IN2" +#~ msgstr "IN2" -#~ msgid "sets size of text drawn by the turtle" -#~ msgstr "fija el tamaño del texto dibujado por la tortuga" +#~ msgid "read input 2 voltage" +#~ msgstr "lee el voltaje de la entrada 2" -#~ msgid "presentation 1x1" -#~ msgstr "presentación 1x1" +#~ msgid "SEN" +#~ msgstr "SEN" -#~ msgid "presentation 1x2" -#~ msgstr "presentación 1x2" +#~ msgid "read analog sensor input voltage" +#~ msgstr "lee el voltaje de entrada del sensor analógico" -#~ msgid "returns 1 when the button is press and 0 otherwise" -#~ msgstr "devuelve 1 cuando el botón está presionado y 0 en otro caso" +#~ msgid "SQR1" +#~ msgstr "SQR1" -#~ msgid "the speed must be a value between 0 and 1023" -#~ msgstr "la velocidad debe ser un valor entre 0 y 1023" +#~ msgid "read square wave 1 voltage" +#~ msgstr "lee el voltaje de la onda cuadrada 1" + +#~ msgid "SQR2" +#~ msgstr "SQR2" #~ msgid "" -#~ "if set to 0 then color averaging is off during calibration; for other " -#~ "values it is on" +#~ "set the speed of the Butia motors as a value between 0 and 1023, passed by " +#~ "an argument" #~ msgstr "" -#~ "Si está en 0 entonces el color promedio está apagado durante la " -#~ "calibración; para otros valores está encendido" - -#~ msgid "grey sensor" -#~ msgstr "sensor de grises" - -#~ msgid "ERROR: Value must be either HIGH or LOW." -#~ msgstr "ERROR: El valor debe ser ALTO o BAJO." +#~ "setea la velocidad de los motores del Butiá como un valor entre 0 y 1023 " +#~ "pasado por argumento" #~ msgid "Error in stop camera" #~ msgstr "Error deteniendo la cámara" @@ -4157,6 +3156,15 @@ msgstr "Conectando..." #~ msgid "return calibration 2" #~ msgstr "devuelve la calibración 2" +#~ msgid "RGB" +#~ msgstr "RGB" + +#~ msgid "YUV" +#~ msgstr "YUV" + +#~ msgid "HSV" +#~ msgstr "HSV" + #~ msgid "Please check the port." #~ msgstr "Por favor chequee el puerto." @@ -4177,6 +3185,9 @@ msgstr "Conectando..." #~ "sincronizar motores\n" #~ "dirección" +#~ msgid "Palette of Arduino blocks" +#~ msgstr "Paleta de bloques Arduino" + #~ msgid "delay Butia" #~ msgstr "espera Butiá" @@ -4273,8 +3284,7 @@ msgstr "Conectando..." #~ msgstr "Botón" #~ msgid "" -#~ "returns the object gray level encountered him as a number between 0 and " -#~ "1023" +#~ "returns the object gray level encountered him as a number between 0 and 1023" #~ msgstr "" #~ "devuelve el nivel de gris del objeto en frente al sensor como un número " #~ "entre 0 y 1023" @@ -4380,8 +3390,7 @@ msgstr "Conectando..." #~ msgid "restore last" #~ msgstr "restaurar último" -#~ msgid "" -#~ "a programmable block: used to add advanced math equations, e.g., sin(x)" +#~ msgid "a programmable block: used to add advanced math equations, e.g., sin(x)" #~ msgstr "" #~ "un bloque programable: utilizado para agregar ecuaciones matemáticas " #~ "avanzadas, i.e., sen(x)" @@ -4445,15 +3454,15 @@ msgstr "Conectando..." #~ msgstr "o" #~ msgid "" -#~ "a programmable block: used to add advanced single-valriable math " -#~ "equations, e.g., sin(x)" +#~ "a programmable block: used to add advanced single-valriable math equations, " +#~ "e.g., sin(x)" #~ msgstr "" #~ "un bloque programable: utilizado para agregar ecuaciones matemáticas " #~ "avanzadas de una variable, i.e., sen(x)" #~ msgid "" -#~ "a programmable block: used to add advanced multi-varialble math " -#~ "equations, e.g., sin(x+y+z)" +#~ "a programmable block: used to add advanced multi-varialble math equations, e." +#~ "g., sin(x+y+z)" #~ msgstr "" #~ "un bloque programable: utilizado para agregar ecuaciones matemáticas " #~ "avanzadas de múltiples variables, i.e., sen(x+y+z)" @@ -4475,3 +3484,31 @@ msgstr "Conectando..." #~ msgid "1×1 picture" #~ msgstr "dibujos 1x1" + +msgid "Please wait" +msgstr "Por favor espera" + +msgid "Starting connection..." +msgstr "Conectando..." + +msgid "up" +msgstr "arriba" + +msgid "down" +msgstr "abajo" + +msgid "backspace" +msgstr "retroceso" + +msgid "tab" +msgstr "tabulador" + +# TRANS: enter is the name of the enter (or return) key +msgid "enter" +msgstr "enter" + +msgid "space" +msgstr "espacio" + +msgid "delete" +msgstr "suprimir" \ No newline at end of file diff --git a/po/pt.po b/po/pt.po index 5fd4c83..450b621 100644 --- a/po/pt.po +++ b/po/pt.po @@ -19,8 +19,8 @@ msgstr "" "#-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-07-26 00:31-0400\n" -"PO-Revision-Date: 2013-09-30 23:33+0200\n" +"POT-Creation-Date: 2013-10-10 00:30-0400\n" +"PO-Revision-Date: 2013-10-10 17:49+0200\n" "Last-Translator: Eduardo H. \n" "Language-Team: LANGUAGE \n" "Language: pt\n" @@ -166,9 +166,9 @@ msgstr "LED" msgid "button" msgstr "botão" -#: TurtleArt/tabasics.py:327 TurtleArt/tabasics.py:409 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1090 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1095 +#: TurtleArt/tabasics.py:332 TurtleArt/tabasics.py:414 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1129 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1134 msgid "gray" msgstr "cinza" @@ -235,13 +235,13 @@ msgstr "" msgid "move Butia" msgstr "" -#: taextras.py:106 TurtleArt/tabasics.py:169 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856 +#: taextras.py:106 TurtleArt/tabasics.py:171 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 msgid "left" msgstr "esquerda" -#: taextras.py:107 TurtleArt/tabasics.py:181 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:880 +#: taextras.py:107 TurtleArt/tabasics.py:183 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:918 msgid "right" msgstr "direita" @@ -323,8 +323,8 @@ msgstr "Escolhe a função do pino (INPUT, OUTPUT, PWM, SERVO)." msgid "write hack pin Butia" msgstr "" -#: taextras.py:129 taextras.py:463 TurtleArt/tabasics.py:976 -#: TurtleArt/tawindow.py:4581 +#: taextras.py:129 taextras.py:463 TurtleArt/tabasics.py:989 +#: TurtleArt/tawindow.py:4676 msgid "value" msgstr "valor" @@ -818,7 +818,7 @@ msgid "base" msgstr "base" #: taextras.py:277 taextras.py:283 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:934 msgid "height" msgstr "altura" @@ -838,7 +838,7 @@ msgstr "Adiciona um objeto de círculo ao projeto." msgid "rectangle" msgstr "retângulo" -#: taextras.py:282 plugins/turtle_blocks_extras/turtle_blocks_extras.py:872 +#: taextras.py:282 plugins/turtle_blocks_extras/turtle_blocks_extras.py:910 msgid "width" msgstr "largura" @@ -884,11 +884,11 @@ msgstr "Prende um objeto de modo a que não possa cair." msgid "joint" msgstr "articulação" -#: taextras.py:296 TurtleArt/tabasics.py:210 TurtleArt/tabasics.py:288 +#: taextras.py:296 TurtleArt/tabasics.py:212 TurtleArt/tabasics.py:291 msgid "x" msgstr "x" -#: taextras.py:297 TurtleArt/tabasics.py:210 TurtleArt/tabasics.py:288 +#: taextras.py:297 TurtleArt/tabasics.py:212 TurtleArt/tabasics.py:291 msgid "y" msgstr "y" @@ -1066,9 +1066,9 @@ msgstr "tato" msgid "ultrasonic" msgstr "ultrassónico" -#: taextras.py:355 TurtleArt/tabasics.py:313 TurtleArt/tabasics.py:326 -#: TurtleArt/tabasics.py:384 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1093 +#: taextras.py:355 TurtleArt/tabasics.py:318 TurtleArt/tabasics.py:331 +#: TurtleArt/tabasics.py:389 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1132 msgid "color" msgstr "cor" @@ -1168,7 +1168,7 @@ msgstr "tocar tom" msgid "frequency" msgstr "frequência" -#: taextras.py:378 plugins/turtle_blocks_extras/turtle_blocks_extras.py:425 +#: taextras.py:378 plugins/turtle_blocks_extras/turtle_blocks_extras.py:429 msgid "time" msgstr "tempo" @@ -1296,7 +1296,7 @@ msgstr "PORTA 1 do bloco" msgid "read" msgstr "ler" -#: taextras.py:409 +#: taextras.py:409 plugins/turtle_blocks_extras/turtle_blocks_extras.py:309 msgid "sensor" msgstr "sensor" @@ -1693,7 +1693,7 @@ msgstr "" msgid "Expeyes device not found" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:279 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281 msgid "resume playing video or audio" msgstr "retomar a reprodução de vídeo ou áudio" @@ -1708,15 +1708,15 @@ msgstr "Título" msgid "Average RGB color from camera is pushed to the stack" msgstr "O valor médio da cor RGB da câmara é inserido na pilha" -#: TurtleArt/tabasics.py:513 +#: TurtleArt/tabasics.py:520 msgid "yellow" msgstr "amarelo" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:664 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:670 msgid "displays polar coordinates" msgstr "mostra coordenadas polares" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:472 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:478 msgid "emptys FILO (first-in-last-out heap)" msgstr "esvazia FILO (pilha último a entrar, primeiro a sair)" @@ -1733,39 +1733,39 @@ msgstr "saída da câmara" msgid "push acceleration in x, y, z to heap" msgstr "inserir a aceleração em X, Y, Z para pilha" -#: TurtleArt/tabasics.py:827 +#: TurtleArt/tabasics.py:838 msgid "if-then operator that uses boolean operators from Numbers palette" msgstr "operador se-então que usa operadores booleanos da palete Números" -#: TurtleArt/tabasics.py:858 +#: TurtleArt/tabasics.py:869 msgid "jogs stack right" msgstr "expande pilha para a direita" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:133 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:135 msgid "Sugar Journal media object" msgstr "Objeto de média do Diário do Sugar" -#: TurtleArt/tabasics.py:967 +#: TurtleArt/tabasics.py:980 msgid "box 2" msgstr "caixa 2" -#: TurtleArt/tabasics.py:957 +#: TurtleArt/tabasics.py:970 msgid "box 1" msgstr "caixa 1" -#: TurtleArtActivity.py:754 TurtleArtActivity.py:1039 turtleblocks.py:430 +#: TurtleArtActivity.py:796 TurtleArtActivity.py:1081 turtleblocks.py:453 msgid "Step" msgstr "Passo a passo" -#: TurtleArt/tabasics.py:636 +#: TurtleArt/tabasics.py:645 msgid "multiplies two numeric inputs" msgstr "multiplica duas entradas numéricas" -#: turtleblocks.py:423 +#: turtleblocks.py:446 msgid "Show/hide blocks" msgstr "Mostrar/esconder blocos" -#: TurtleArtActivity.py:341 TurtleArtActivity.py:1029 turtleblocks.py:421 +#: TurtleArtActivity.py:367 TurtleArtActivity.py:1071 turtleblocks.py:444 msgid "Hide palette" msgstr "Esconder palete" @@ -1777,59 +1777,59 @@ msgstr "Parceiros" msgid "My Turtle Art session" msgstr "A minha sessão TartarugArte" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:157 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:159 msgid "Sugar Journal video object" msgstr "Objeto de vídeo do Diário do Sugar" -#: TurtleArt/tabasics.py:516 +#: TurtleArt/tabasics.py:523 msgid "cyan" msgstr "ciano" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:921 msgid "xcor of right of screen" msgstr "coor.x da direita do ecrã" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:436 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:442 msgid "Palette of extra options" msgstr "Palete de opções extra" -#: TurtleArtActivity.py:702 TurtleArtActivity.py:719 TurtleArtActivity.py:758 -#: TurtleArtActivity.py:974 +#: TurtleArtActivity.py:744 TurtleArtActivity.py:761 TurtleArtActivity.py:800 +#: TurtleArtActivity.py:1016 msgid "Load example" msgstr "Carregar exemplo" -#: TurtleArt/tabasics.py:1060 +#: TurtleArt/tabasics.py:1075 msgid "move all blocks to trash" msgstr "move todos os blocos para o lixo" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:802 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840 msgid "list" msgstr "lista" -#: turtleblocks.py:299 +#: turtleblocks.py:321 #, python-format msgid "Configuration directory not writable: %s" msgstr "O diretório de configuração não tem permissão de escrita: %s" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:277 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:279 msgid "media resume" msgstr "retomar média" -#: TurtleArt/tabasics.py:268 TurtleArt/tawindow.py:4248 +#: TurtleArt/tabasics.py:270 TurtleArt/tawindow.py:4335 msgid "heading" msgstr "orientação" -#: TurtleArtActivity.py:951 +#: TurtleArtActivity.py:993 msgid "Sharing blocks disabled" msgstr "Partilha de blocos desativada" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:239 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:241 msgid "saves turtle graphics as an SVG file in the Sugar Journal" msgstr "" "guarda os desenhos da tartaruga como um ficheiro SVG no Diário do Sugar" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:190 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:204 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:192 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:206 msgid "draws text or show media from the Journal" msgstr "desenha texto ou mostra média do Diário" @@ -1837,53 +1837,53 @@ msgstr "desenha texto ou mostra média do Diário" msgid "RFID" msgstr "RFID" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:155 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:157 msgid "video" msgstr "vídeo" -#: TurtleArt/tabasics.py:517 +#: TurtleArt/tabasics.py:524 msgid "blue" msgstr "azul" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:656 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662 msgid "displays Cartesian coordinates" msgstr "mostra coordenadas Cartesianas" -#: turtleblocks.py:260 +#: turtleblocks.py:282 msgid "No option action:" msgstr "Ação sem opção:" -#: TurtleArt/tabasics.py:866 +#: TurtleArt/tabasics.py:877 msgid "jogs stack down" msgstr "expande pilha para baixo" -#: TurtleArt/tabasics.py:672 +#: TurtleArt/tabasics.py:681 msgid "modular (remainder) operator" msgstr "operador módulo (resto da divisão inteira)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:951 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:989 msgid "bottom y" msgstr "y base" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:236 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 msgid "save SVG" msgstr "guardar SVG" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:613 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:630 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:647 msgid "runs code found in the tamyblock.py module found in the Journal" msgstr "executa código encontrado no módulo tamyblock.py encontrado no Diário" -#: TurtleArt/tabasics.py:431 +#: TurtleArt/tabasics.py:436 msgid "pen down" msgstr "caneta embaixo" -#: TurtleArt/tabasics.py:789 +#: TurtleArt/tabasics.py:800 msgid "wait" msgstr "esperar" -#: TurtleArt/tabasics.py:976 TurtleArt/tabasics.py:992 +#: TurtleArt/tabasics.py:989 TurtleArt/tabasics.py:1005 msgid "box" msgstr "caixa" @@ -1891,19 +1891,19 @@ msgstr "caixa" msgid "Failed to upload!" msgstr "A transferência falhou!" -#: TurtleArt/tawindow.py:1156 TurtleArt/tawindow.py:1763 +#: TurtleArt/tawindow.py:1232 TurtleArt/tawindow.py:1847 msgid "shift" msgstr "deslocar" -#: TurtleArt/tabasics.py:922 TurtleArt/tawindow.py:4527 +#: TurtleArt/tabasics.py:935 TurtleArt/tawindow.py:4622 msgid "invokes named action stack" msgstr "invoca pilha de ação com nome" -#: TurtleArt/tabasics.py:906 TurtleArt/tabasics.py:909 -#: TurtleArt/tabasics.py:917 TurtleArt/tabasics.py:921 -#: TurtleArt/tawindow.py:1449 TurtleArt/tawindow.py:1546 -#: TurtleArt/tawindow.py:1559 TurtleArt/tawindow.py:2178 -#: TurtleArt/tawindow.py:4513 +#: TurtleArt/tabasics.py:919 TurtleArt/tabasics.py:922 +#: TurtleArt/tabasics.py:930 TurtleArt/tabasics.py:934 +#: TurtleArt/tawindow.py:1532 TurtleArt/tawindow.py:1630 +#: TurtleArt/tawindow.py:1643 TurtleArt/tawindow.py:2263 +#: TurtleArt/tawindow.py:4608 msgid "action" msgstr "ação" @@ -1913,20 +1913,20 @@ msgstr "" "operador faz-até-Verdade que utiliza operadores booleanos da palete de " "Números" -#: turtleblocks.py:91 +#: turtleblocks.py:94 msgid "usage is" msgstr "utilização é" -#: TurtleArt/tabasics.py:970 +#: TurtleArt/tabasics.py:983 msgid "Variable 2 (numeric value)" msgstr "Variável 2 (valor numérico)" -#: TurtleArt/tabasics.py:645 +#: TurtleArt/tabasics.py:654 msgid "divide" msgstr "dividir" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:227 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:229 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:240 msgid "picture name" msgstr "nome da imagem" @@ -1935,32 +1935,32 @@ msgstr "nome da imagem" msgid "while" msgstr "enquanto" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:913 msgid "the canvas width" msgstr "a largura da tela" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:498 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:514 msgid "empty heap?" msgstr "pilha vazia?" -#: TurtleArt/tabasics.py:998 TurtleArt/tawindow.py:4556 +#: TurtleArt/tabasics.py:1011 TurtleArt/tawindow.py:4651 msgid "named variable (numeric value)" msgstr "variável com nome (valor numérico)" -#: TurtleArt/tawindow.py:1117 TurtleArt/tawindow.py:1742 +#: TurtleArt/tawindow.py:1193 TurtleArt/tawindow.py:1826 msgid "next" msgstr "próximo" -#: TurtleArt/tabasics.py:825 +#: TurtleArt/tabasics.py:836 msgid "if then" msgstr "se então" -#: TurtleArt/tabasics.py:453 +#: TurtleArt/tabasics.py:458 msgid "set pen size" msgstr "definir tamanho da caneta" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:821 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859 msgid "presentation template: select Journal object (no description)" msgstr "modelo de apresentação: escolhe objeto do Diário (sem descrição)" @@ -1969,15 +1969,15 @@ msgstr "modelo de apresentação: escolhe objeto do Diário (sem descrição)" msgid "until" msgstr "até" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:265 msgid "media stop" msgstr "parar média" -#: TurtleArtActivity.py:326 turtleblocks.py:405 +#: TurtleArtActivity.py:351 turtleblocks.py:428 msgid "Turn on hover help" msgstr "Ligar ajuda flutuante" -#: TurtleArt/tabasics.py:1050 +#: TurtleArt/tabasics.py:1065 msgid "permanently deletes items in trash" msgstr "apaga permanentemente os itens no lixo" @@ -1985,11 +1985,11 @@ msgstr "apaga permanentemente os itens no lixo" msgid "uturn" msgstr "rodar 180°" -#: TurtleArt/tabasics.py:1008 +#: TurtleArt/tabasics.py:1021 msgid "top of Action 1 stack" msgstr "topo da pilha Ação 1" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571 msgid "" "a programmable block: used to add advanced single-variable math equations, e." "g., sin(x)" @@ -1997,30 +1997,30 @@ msgstr "" "um bloco programável: utilizado para adicionar equações matemáticas " "avançadas de uma variável, por ex., sin(x)" -#: TurtleArt/tabasics.py:784 +#: TurtleArt/tabasics.py:795 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:91 msgid "Palette of flow operators" msgstr "Palete de operadores de fluxo" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:751 msgid "top of a collapsed stack" msgstr "topo de uma pilha que encolhe. Usado com o bloco base" -#: TurtleArt/tabasics.py:840 TurtleArt/tabasics.py:848 +#: TurtleArt/tabasics.py:851 TurtleArt/tabasics.py:859 msgid "if-then-else operator that uses boolean operators from Numbers palette" msgstr "operador se-então-senão que usa operadores booleanos da palete Números" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:351 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355 msgid "returns mouse y coordinate" msgstr "devolve a coordenada Y do rato" -#: TurtleArt/tabasics.py:398 +#: TurtleArt/tabasics.py:403 msgid "holds current pen shade" msgstr "contém o tom atual da caneta" #. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: pitch, duration, amplitude -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:296 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:298 msgid "sinewave" msgstr "sinusoide" @@ -2028,64 +2028,64 @@ msgstr "sinusoide" msgid "Login failed" msgstr "O login falhou" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:924 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:962 msgid "left x" msgstr "x esquerda" -#: TurtleArt/tabasics.py:226 +#: TurtleArt/tabasics.py:228 msgid "set heading" msgstr "definir orientação" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:411 msgid "RGB color under the turtle is pushed to the stack" msgstr "a cor RGB por debaixo da tartaruga é inserida na pilha" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:814 msgid "declutters canvas by hiding blocks" msgstr "arruma a área de trabalho escondendo os blocos" -#: TurtleArtActivity.py:1039 +#: TurtleArtActivity.py:1081 msgid "w" msgstr "w" -#: TurtleArtActivity.py:1037 +#: TurtleArtActivity.py:1079 msgid "r" msgstr "r" -#: TurtleArtActivity.py:1042 +#: TurtleArtActivity.py:1084 msgid "s" msgstr "s" -#: TurtleArtActivity.py:1030 +#: TurtleArtActivity.py:1072 msgid "p" msgstr "p" -#: TurtleArtActivity.py:1035 +#: TurtleArtActivity.py:1077 msgid "e" msgstr "e" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:551 msgid "Python chr operator" msgstr "Operador Python de chr" -#: TurtleArt/tabasics.py:857 +#: TurtleArt/tabasics.py:868 msgid "horizontal space" msgstr "espaço horizontal" -#: TurtleArtActivity.py:669 TurtleArtActivity.py:826 +#: TurtleArtActivity.py:707 TurtleArtActivity.py:868 msgid "Metric coordinates" msgstr "Coordenadas métricas" -#: TurtleArt/tabasics.py:902 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181 +#: TurtleArt/tabasics.py:915 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:183 msgid "string value" msgstr "valor de texto" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:167 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:169 msgid "description" msgstr "descrição" -#: TurtleArt/talogo.py:572 +#: TurtleArt/talogo.py:573 msgid "I don't know how to" msgstr "Eu não sei como" @@ -2093,21 +2093,21 @@ msgstr "Eu não sei como" msgid "Username:" msgstr "Nome de Utilizador:" -#: TurtleArt/tabasics.py:470 +#: TurtleArt/tabasics.py:475 msgid "starts filled polygon (used with end fill block)" msgstr "" "inicia polígono preenchido (utilizado com o bloco terminar preenchimento)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:835 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 msgid "presentation template: select four Journal objects" msgstr "modelo de apresentação: escolhe quatro objetos do Diário" -#: TurtleArtActivity.py:608 TurtleArtActivity.py:637 TurtleArtActivity.py:750 -#: TurtleArtActivity.py:820 turtleblocks.py:407 +#: TurtleArtActivity.py:647 TurtleArtActivity.py:675 TurtleArtActivity.py:792 +#: TurtleArtActivity.py:862 turtleblocks.py:430 msgid "View" msgstr "Ver" -#: TurtleArt/tabasics.py:374 +#: TurtleArt/tabasics.py:379 msgid "sets gray level of the line drawn by the turtle" msgstr "define o nível de cinza da linha desenhada pela tartaruga" @@ -2115,68 +2115,68 @@ msgstr "define o nível de cinza da linha desenhada pela tartaruga" msgid "Password:" msgstr "Palavra-Passe:" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:415 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:419 msgid "turtle sees" msgstr "tartaruga vê" -#: TurtleArt/tabasics.py:872 +#: TurtleArt/tabasics.py:883 msgid "stop action" msgstr "parar ação" -#: TurtleArt/tabasics.py:515 +#: TurtleArt/tabasics.py:522 msgid "green" msgstr "verde" -#: TurtleArt/tabasics.py:313 TurtleArt/tabasics.py:327 -#: TurtleArt/tabasics.py:397 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1089 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1094 +#: TurtleArt/tabasics.py:318 TurtleArt/tabasics.py:332 +#: TurtleArt/tabasics.py:402 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1128 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1133 msgid "shade" msgstr "tom" -#: TurtleArt/tabasics.py:317 TurtleArt/tabasics.py:331 +#: TurtleArt/tabasics.py:322 TurtleArt/tabasics.py:336 msgid "fills the background with (color, shade)" msgstr "preenche o fundo com (cor, tom)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:227 msgid "save picture" msgstr "guardar imagem" #: plugins/audio_sensors/audio_sensors.py:119 #: plugins/audio_sensors/audio_sensors.py:127 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:296 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:298 msgid "pitch" msgstr "altura do som" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:323 msgid "returns 1 if mouse button is pressed" msgstr "devolve 1 se o botão do rato for premido" -#: TurtleArtActivity.py:513 TurtleArtActivity.py:672 TurtleArtActivity.py:828 +#: TurtleArtActivity.py:544 TurtleArtActivity.py:710 TurtleArtActivity.py:870 msgid "Rescale coordinates up" msgstr "Aumentar a escala das coordenadas" -#: TurtleArt/tabasics.py:419 +#: TurtleArt/tabasics.py:424 msgid "pen up" msgstr "caneta levantada" -#: TurtleArt/tabasics.py:511 +#: TurtleArt/tabasics.py:518 msgid "orange" msgstr "laranja" -#: TurtleArt/tabasics.py:793 +#: TurtleArt/tabasics.py:804 msgid "pauses program execution a specified number of seconds" msgstr "pausa a execução do programa um determinado número de segundos" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:446 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:452 msgid "pushes value onto FILO (first-in last-out heap)" msgstr "insere valor no FILO (pilha último a entrar, primeiro a sair)" -#: TurtleArt/tabasics.py:1059 +#: TurtleArt/tabasics.py:1074 msgid "clear all" msgstr "limpar tudo" -#: TurtleArt/tabasics.py:822 TurtleArt/tabasics.py:835 +#: TurtleArt/tabasics.py:833 TurtleArt/tabasics.py:846 msgid "then" msgstr "então" @@ -2184,45 +2184,46 @@ msgstr "então" msgid "Register" msgstr "Registar" -#: TurtleArt/tabasics.py:751 +#: TurtleArt/tabasics.py:760 msgid "not" msgstr "não é igual" -#: TurtleArt/tabasics.py:839 TurtleArt/tabasics.py:847 +#: TurtleArt/tabasics.py:850 TurtleArt/tabasics.py:858 msgid "if then else" msgstr "se então senão" -#: TurtleArt/tabasics.py:875 +#: TurtleArt/tabasics.py:886 msgid "stops current action" msgstr "para a ação atual" -#: TurtleArt/tabasics.py:185 +#: TurtleArt/tabasics.py:187 msgid "turns turtle clockwise (angle in degrees)" msgstr "roda a tartaruga na direção dos ponteiros do relógio (ângulo em graus)" -#: TurtleArt/tabasics.py:410 +#: TurtleArt/tabasics.py:415 msgid "holds current gray level (can be used in place of a number block)" msgstr "" "contém o nível de cinza atual (pode ser usado em vez de um bloco de número)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 msgid "xcor of left of screen" msgstr "coor.x da esquerda do ecrã" -#: turtleblocks.py:402 +#: turtleblocks.py:425 msgid "Reset block size" msgstr "Repor o tamanho dos blocos" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:670 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758 +#: TurtleArt/tabasics.py:122 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:676 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:794 msgid "turtle" msgstr "tartaruga" -#: TurtleArt/tapalette.py:97 +#: TurtleArt/tapalette.py:98 msgid "displays next palette" msgstr "mostra a palete seguinte" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:812 msgid "hide blocks" msgstr "esconder blocos" @@ -2231,35 +2232,35 @@ msgstr "esconder blocos" msgid "light level detected by camera" msgstr "nível de luz detetado pela câmara" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:554 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560 msgid "Python int operator" msgstr "Operador Python de int" -#: TurtleArt/tabasics.py:732 +#: TurtleArt/tabasics.py:741 msgid "logical less-than operator" msgstr "operador lógico menor-que" -#: TurtleArt/tabasics.py:1055 +#: TurtleArt/tabasics.py:1070 msgid "restore all blocks from trash" msgstr "restaura todos os blocos do lixo" -#: turtleblocks.py:382 +#: turtleblocks.py:404 msgid "Save" msgstr "Guardar" -#: TurtleArt/tabasics.py:929 +#: TurtleArt/tabasics.py:942 msgid "store in box 1" msgstr "guardar na caixa 1" -#: TurtleArt/tabasics.py:943 +#: TurtleArt/tabasics.py:956 msgid "store in box 2" msgstr "guardar na caixa 2" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:793 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831 msgid "hides the Sugar toolbars" msgstr "esconde as barras de ferramentas do Sugar" -#: TurtleArt/tabasics.py:241 +#: TurtleArt/tabasics.py:243 msgid "" "holds current x-coordinate value of the turtle (can be used in place of a " "number block)" @@ -2267,24 +2268,24 @@ msgstr "" "contém o valor atual da coordenada X da tartaruga (pode ser usado em vez de " "um bloco de número)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:536 msgid "print" msgstr "imprimir" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345 msgid "returns mouse x coordinate" msgstr "devolve a coordenada X do rato" -#: TurtleArt/tabasics.py:510 +#: TurtleArt/tabasics.py:517 msgid "red" msgstr "vermelho" -#: TurtleArtActivity.py:200 TurtleArtActivity.py:781 TurtleArtActivity.py:964 -#: TurtleArtActivity.py:1000 turtleblocks.py:386 +#: TurtleArtActivity.py:224 TurtleArtActivity.py:823 TurtleArtActivity.py:1006 +#: TurtleArtActivity.py:1042 turtleblocks.py:408 msgid "Save as Logo" msgstr "Guardar como Logo" -#: TurtleArt/tabasics.py:347 +#: TurtleArt/tabasics.py:352 msgid "sets color of the line drawn by the turtle" msgstr "define a cor da linha desenhada pela tartaruga" @@ -2301,29 +2302,30 @@ msgstr "Ativar colaboração" #: plugins/audio_sensors/audio_sensors.py:75 #: plugins/camera_sensor/camera_sensor.py:63 #: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:313 msgid "Palette of sensor blocks" msgstr "Palete de blocos de sensores" -#: TurtleArtActivity.py:785 TurtleArtActivity.py:988 TurtleArtActivity.py:1010 +#: TurtleArtActivity.py:827 TurtleArtActivity.py:1030 +#: TurtleArtActivity.py:1052 msgid "Load plugin" msgstr "Carregar plugin" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334 msgid "returns True if mouse button is pressed" msgstr "devolve Verdadeiro se o botão do rato for premido" -#: TurtleArt/tabasics.py:707 +#: TurtleArt/tabasics.py:716 msgid "number" msgstr "número" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:359 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363 msgid "query keyboard" msgstr "consultar teclado" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:714 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:926 msgid "top" msgstr "topo" @@ -2331,7 +2333,7 @@ msgstr "topo" msgid "Submit to Web" msgstr "Enviar à Web" -#: TurtleArtActivity.py:664 TurtleArtActivity.py:822 turtleblocks.py:392 +#: TurtleArtActivity.py:702 TurtleArtActivity.py:864 turtleblocks.py:414 msgid "Cartesian coordinates" msgstr "Coordenadas cartesianas" @@ -2339,41 +2341,41 @@ msgstr "Coordenadas cartesianas" msgid "Nickname" msgstr "Nome" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:215 msgid "set scale" msgstr "ajustar escala" -#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:2156 -#: TurtleArtActivity.py:775 +#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:2241 +#: TurtleArtActivity.py:817 msgid "Share selected blocks" msgstr "Partilhar os blocos selecionados" -#: TurtleArt/tabasics.py:520 +#: TurtleArt/tabasics.py:527 msgid "white" msgstr "branco" -#: TurtleArt/tabasics.py:892 +#: TurtleArt/tabasics.py:905 msgid "connects action to toolbar run buttons" msgstr "conecta ação com os botões de execução da barra de ferramentas" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:428 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:432 msgid "elapsed time (in seconds) since program started" msgstr "tempo decorrido (em segundos) desde que o programa começou" -#: TurtleArt/tawindow.py:1634 TurtleArt/tawindow.py:1673 +#: TurtleArt/tawindow.py:1718 TurtleArt/tawindow.py:1757 #: gnome_plugins/uploader_plugin.py:144 msgid "Cancel" msgstr "Cancelar" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:899 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:937 msgid "the canvas height" msgstr "a altura da tela" -#: TurtleArt/tabasics.py:619 +#: TurtleArt/tabasics.py:628 msgid "minus" msgstr "menos" -#: TurtleArt/tabasics.py:760 TurtleArt/tabasics.py:763 +#: TurtleArt/tabasics.py:769 TurtleArt/tabasics.py:772 msgid "and" msgstr "e" @@ -2381,17 +2383,17 @@ msgstr "e" msgid "top of a collapsible stack" msgstr "topo de uma pilha que pode encolher" -#: TurtleArt/talogo.py:631 +#: TurtleArt/talogo.py:632 msgid "as input" msgstr "como entrada" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:605 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:622 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:638 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:611 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:628 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644 msgid "Python block" msgstr "Bloco de Python" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:255 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257 msgid "media wait" msgstr "esperar por média" @@ -2400,31 +2402,31 @@ msgstr "esperar por média" msgid "acceleration" msgstr "aceleração" -#: TurtleArt/tabasics.py:491 +#: TurtleArt/tabasics.py:496 msgid "holds current pen size (can be used in place of a number block)" msgstr "" "contém o tamanho atual da caneta (pode ser usado em vez de um bloco de " "número)" -#: TurtleArt/tabasics.py:343 +#: TurtleArt/tabasics.py:348 msgid "set color" msgstr "definir cor" -#: TurtleArt/tabasics.py:691 +#: TurtleArt/tabasics.py:700 msgid "min" msgstr "mín" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:735 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:759 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 msgid "loads a block" msgstr "carrega um bloco" -#: TurtleArt/tabasics.py:308 +#: TurtleArt/tabasics.py:313 msgid "Palette of pen commands" msgstr "Palete de comandos da caneta" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:459 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:465 msgid "shows values in FILO (first-in last-out heap)" msgstr "mostra valores no FILO (pilha último a entrar, primeiro a sair)" @@ -2434,110 +2436,110 @@ msgstr "" "operador faz-enquanto-Verdade que utiliza operadores booleanos da palete de " "Números" -#: turtleblocks.py:389 +#: turtleblocks.py:411 msgid "File" msgstr "Ficheiro" -#: TurtleArt/tabasics.py:754 +#: TurtleArt/tabasics.py:763 msgid "logical NOT operator" msgstr "operador lógico não-é-igual (NOT)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:867 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:905 msgid "ycor of bottom of screen" msgstr "coor.y da base do ecrã" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:828 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:866 msgid "presentation template: select Journal object (with description)" msgstr "modelo de apresentação: escolhe objeto do Diário (com descrição)" -#: TurtleArt/tabasics.py:601 +#: TurtleArt/tabasics.py:610 msgid "Palette of numeric operators" msgstr "Palete de operadores numéricos" -#: TurtleArt/tabasics.py:633 +#: TurtleArt/tabasics.py:642 msgid "multiply" msgstr "multiplicar" -#: TurtleArt/tabasics.py:800 +#: TurtleArt/tabasics.py:811 msgid "forever" msgstr "para sempre" -#: TurtleArtActivity.py:1302 +#: TurtleArtActivity.py:1350 #, python-format msgid "Plugin %s already installed." msgstr "O plugin %s já está instalado." -#: TurtleArt/tabasics.py:361 +#: TurtleArt/tabasics.py:366 msgid "sets shade of the line drawn by the turtle" msgstr "define o tom da linha desenhada pela tartaruga" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:288 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:290 msgid "speaks text" msgstr "fala texto" -#: TurtleArtActivity.py:265 +#: TurtleArtActivity.py:289 msgid "snapshot" msgstr "revisão" -#: TurtleArt/tabasics.py:156 +#: TurtleArt/tabasics.py:158 msgid "clean" msgstr "limpar" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:849 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:880 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887 msgid "presentation template: select two Journal objects" msgstr "modelo de apresentação: escolhe dois objetos do Diário" -#: TurtleArtActivity.py:675 TurtleArtActivity.py:830 turtleblocks.py:398 +#: TurtleArtActivity.py:713 TurtleArtActivity.py:872 turtleblocks.py:421 msgid "Grow blocks" msgstr "Aumentar tamanho dos blocos" -#: TurtleArtActivity.py:661 TurtleArtActivity.py:821 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:791 +#: TurtleArtActivity.py:699 TurtleArtActivity.py:863 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:829 msgid "Fullscreen" msgstr "Ecrã Inteiro" -#: turtleblocks.py:275 +#: turtleblocks.py:297 msgid "File not found" msgstr "Ficheiro não encontrado" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 msgid "show" msgstr "mostrar" -#: TurtleArt/tabasics.py:899 TurtleArt/tabasics.py:900 -#: TurtleArt/tabasics.py:901 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:178 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:179 +#: TurtleArt/tabasics.py:912 TurtleArt/tabasics.py:913 +#: TurtleArt/tabasics.py:914 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:201 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:203 msgid "text" msgstr "texto" -#: TurtleArt/tabasics.py:691 +#: TurtleArt/tabasics.py:700 msgid "random" msgstr "aleatório" -#: TurtleArt/tabasics.py:719 +#: TurtleArt/tabasics.py:728 msgid "logical greater-than operator" msgstr "operador lógico maior-que" -#: TurtleArt/tabasics.py:173 +#: TurtleArt/tabasics.py:175 msgid "turns turtle counterclockwise (angle in degrees)" msgstr "" "roda a tartaruga na direção contrária dos ponteiros do relógio (ângulo em " "graus)" -#: TurtleArt/tabasics.py:521 +#: TurtleArt/tabasics.py:528 msgid "black" msgstr "preto" -#: TurtleArt/tabasics.py:684 +#: TurtleArt/tabasics.py:693 msgid "calculates square root" msgstr "calcula a raiz quadrada" -#: TurtleArt/tabasics.py:255 +#: TurtleArt/tabasics.py:257 msgid "" "holds current y-coordinate value of the turtle (can be used in place of a " "number block)" @@ -2545,11 +2547,11 @@ msgstr "" "contém o valor atual da coordenada Y da tartaruga (pode ser usado em vez de " "um bloco de número)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:338 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:342 msgid "mouse x" msgstr "x rato" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352 msgid "mouse y" msgstr "y rato" @@ -2557,27 +2559,27 @@ msgstr "y rato" msgid "stop" msgstr "parar" -#: TurtleArt/tabasics.py:716 +#: TurtleArt/tabasics.py:725 msgid "greater than" msgstr "maior que" -#: TurtleArt/tabasics.py:240 TurtleArt/tawindow.py:4247 +#: TurtleArt/tabasics.py:242 TurtleArt/tawindow.py:4334 msgid "xcor" msgstr "coor.x" -#: TurtleArtActivity.py:759 turtleblocks.py:437 util/helpbutton.py:44 +#: TurtleArtActivity.py:801 turtleblocks.py:460 util/helpbutton.py:44 msgid "Help" msgstr "Ajuda" -#: turtleblocks.py:477 +#: turtleblocks.py:500 msgid "Save project?" msgstr "Guardar projeto?" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:680 msgid "chooses which turtle to command" msgstr "escolhe que tartaruga comandar" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:942 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:980 msgid "right x" msgstr "x direita" @@ -2586,32 +2588,32 @@ msgstr "x direita" msgid "light level detected by light sensor" msgstr "nível de luz detetado pelo sensor de luz" -#: TurtleArtActivity.py:1203 TurtleArtActivity.py:1208 -#: TurtleArtActivity.py:1288 +#: TurtleArtActivity.py:1251 TurtleArtActivity.py:1256 +#: TurtleArtActivity.py:1336 msgid "Plugin could not be installed." msgstr "O plugin não pode ser instalado." -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:368 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:372 msgid "keyboard" msgstr "teclado" -#: TurtleArt/tabasics.py:195 +#: TurtleArt/tabasics.py:197 msgid "arc" msgstr "arco" -#: TurtleArt/tabasics.py:195 +#: TurtleArt/tabasics.py:197 msgid "radius" msgstr "raio" -#: TurtleArtActivity.py:666 TurtleArtActivity.py:824 turtleblocks.py:394 +#: TurtleArtActivity.py:704 TurtleArtActivity.py:866 turtleblocks.py:416 msgid "Polar coordinates" msgstr "Coordenadas polares" -#: TurtleArt/tabasics.py:357 +#: TurtleArt/tabasics.py:362 msgid "set shade" msgstr "definir tom" -#: TurtleArt/tabasics.py:764 +#: TurtleArt/tabasics.py:773 msgid "logical AND operator" msgstr "operador lógico e (AND)" @@ -2623,23 +2625,19 @@ msgstr "" "Precisas de ter uma conta em http://turtleartsite.sugarlabs.org para " "transferir o teu projeto." -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 -msgid "palette" -msgstr "palete" - -#: TurtleArtActivity.py:753 TurtleArtActivity.py:1037 turtleblocks.py:429 +#: TurtleArtActivity.py:795 TurtleArtActivity.py:1079 turtleblocks.py:452 msgid "Run" msgstr "Executar" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:462 msgid "show heap" msgstr "mostrar pilha" -#: TurtleArt/tabasics.py:230 +#: TurtleArt/tabasics.py:232 msgid "sets the heading of the turtle (0 is towards the top of the screen.)" msgstr "define a orientação da tartaruga (0 é para o topo do ecrã)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:759 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795 msgid "selects a palette" msgstr "seleciona uma palete" @@ -2653,19 +2651,19 @@ msgid "Title:" msgstr "Título:" #: plugins/camera_sensor/camera_sensor.py:67 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:125 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127 msgid "Palette of media objects" msgstr "Palete de objetos de média" -#: TurtleArtActivity.py:653 +#: TurtleArtActivity.py:691 msgid "Restore blocks from trash" msgstr "Restaura os blocos do lixo" -#: TurtleArt/tabasics.py:884 +#: TurtleArt/tabasics.py:897 msgid "Palette of variable blocks" msgstr "Palete de blocos de variável" -#: TurtleArt/tabasics.py:708 +#: TurtleArt/tabasics.py:717 msgid "used as numeric input in mathematic operators" msgstr "utilizado como entrada numérica em operadores matemáticos" @@ -2679,7 +2677,7 @@ msgstr "Transferir" msgid "Server" msgstr "Servidor" -#: TurtleArt/tabasics.py:960 +#: TurtleArt/tabasics.py:973 msgid "Variable 1 (numeric value)" msgstr "Variável 1 (valor numérico)" @@ -2687,68 +2685,68 @@ msgstr "Variável 1 (valor numérico)" msgid "Neighborhood" msgstr "Vizinhança" -#: TurtleArt/tabasics.py:611 +#: TurtleArt/tabasics.py:620 msgid "adds two alphanumeric inputs" msgstr "soma duas entradas alfanuméricas" -#: TurtleArt/tabasics.py:740 +#: TurtleArt/tabasics.py:749 msgid "equal" msgstr "igual" -#: TurtleArt/tabasics.py:835 +#: TurtleArt/tabasics.py:846 msgid "else" msgstr "senão" -#: TurtleArt/talogo.py:630 +#: TurtleArt/talogo.py:631 msgid "doesn't like" msgstr "não gosta" -#: turtleblocks.py:475 +#: turtleblocks.py:498 msgid "You have unsaved work. Would you like to save before quitting?" msgstr "Tens trabalho não guardado. Queres guardar antes de sair?" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:785 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:823 msgid "restores hidden blocks" msgstr "restaura blocos escondidos" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:720 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:743 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:767 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779 msgid "load" msgstr "carregar" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:265 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:267 msgid "stop video or audio" msgstr "parar vídeo ou áudio" -#: TurtleArt/tabasics.py:422 +#: TurtleArt/tabasics.py:427 msgid "Turtle will not draw when moved." msgstr "A tartaruga não desenhará quando movida." #. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: pop removes a new item from the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489 msgid "pop" msgstr "retirar" -#: TurtleArt/tabasics.py:490 +#: TurtleArt/tabasics.py:495 msgid "pen size" msgstr "tamanho da caneta" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:706 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:732 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742 msgid "turtle shell" msgstr "carapaça da tartaruga" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:300 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302 msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)" msgstr "toca uma sinusoide na frequência, amplitude, e duração (em segundos)" -#: TurtleArt/tabasics.py:680 +#: TurtleArt/tabasics.py:689 msgid "√" msgstr "√" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:287 msgid "speak" msgstr "falar" @@ -2756,50 +2754,50 @@ msgstr "falar" msgid "read value from RFID device" msgstr "ler valor do dispositivo RFID" -#: TurtleArt/tabasics.py:199 +#: TurtleArt/tabasics.py:201 msgid "moves turtle along an arc" msgstr "move a tartaruga ao longo de um arco" -#: TurtleArt/tabasics.py:744 +#: TurtleArt/tabasics.py:753 msgid "logical equal-to operator" msgstr "operador lógico igual-a" -#: TurtleArt/tabasics.py:508 +#: TurtleArt/tabasics.py:515 msgid "Palette of pen colors" msgstr "Palete de cores da caneta" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274 msgid "pause video or audio" msgstr "pausar vídeo ou áudio" -#: TurtleArt/tabasics.py:934 +#: TurtleArt/tabasics.py:947 msgid "stores numeric value in Variable 1" msgstr "guarda o valor numérico na Variável 1" -#: TurtleArt/tabasics.py:948 +#: TurtleArt/tabasics.py:961 msgid "stores numeric value in Variable 2" msgstr "guarda o valor numérico na Variável 2" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:698 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:707 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:743 msgid "put a custom 'shell' on the turtle" msgstr "coloca uma \"carapaça\" personalizada na tartaruga" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:327 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:320 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:331 msgid "button down" msgstr "botão premido" -#: TurtleArt/tabasics.py:146 +#: TurtleArt/tabasics.py:148 msgid "moves turtle backward" msgstr "move a tartaruga para trás" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:891 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:929 msgid "ycor of top of screen" msgstr "coor.y do topo do ecrã" -#: TurtleArt/talogo.py:384 TurtleArtActivity.py:383 TurtleArtActivity.py:756 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1428 +#: TurtleArt/talogo.py:384 TurtleArtActivity.py:409 TurtleArtActivity.py:798 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1469 msgid "Show blocks" msgstr "Mostrar blocos" @@ -2815,23 +2813,23 @@ msgstr "guardar" msgid "Colors" msgstr "Cores" -#: TurtleArt/tabasics.py:457 +#: TurtleArt/tabasics.py:462 msgid "sets size of the line drawn by the turtle" msgstr "define o tamanho da linha desenhada pela tartaruga" -#: TurtleArtActivity.py:980 turtleblocks.py:380 +#: TurtleArtActivity.py:1022 turtleblocks.py:402 msgid "Open" msgstr "Abrir" -#: TurtleArt/tawindow.py:1102 TurtleArt/tawindow.py:1103 +#: TurtleArt/tawindow.py:1178 TurtleArt/tawindow.py:1179 msgid "orientation" msgstr "orientação" -#: TurtleArt/tabasics.py:254 TurtleArt/tawindow.py:4248 +#: TurtleArt/tabasics.py:256 TurtleArt/tawindow.py:4335 msgid "ycor" msgstr "coor.y" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:579 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585 msgid "" "a programmable block: used to add advanced multi-variable math equations, e." "g., sqrt(x*x+y*y)" @@ -2839,48 +2837,48 @@ msgstr "" "um bloco programável: utilizado para adicionar equações matemáticas " "avançadas de múltiplas variáveis, por ex., sqrt(x*x+y*y)" -#: TurtleArt/tabasics.py:822 TurtleArt/tabasics.py:835 +#: TurtleArt/tabasics.py:833 TurtleArt/tabasics.py:846 msgid "if" msgstr "se" -#: TurtleArt/tabasics.py:214 TurtleArt/tabasics.py:292 +#: TurtleArt/tabasics.py:216 TurtleArt/tabasics.py:295 msgid "" "moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." msgstr "" "move a tartaruga para a posição coor.x, coor.y; (0, 0) fica no centro do " "ecrã." -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:561 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:575 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:589 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:567 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:581 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595 msgid "Python" msgstr "Python" -#: TurtleArtActivity.py:760 turtleblocks.py:432 +#: TurtleArtActivity.py:802 turtleblocks.py:455 msgid "Stop" msgstr "Parar" -#: TurtleArt/tabasics.py:1014 TurtleArt/tabasics.py:1034 +#: TurtleArt/tabasics.py:1027 TurtleArt/tabasics.py:1047 msgid "action 2" msgstr "ação 2" -#: TurtleArt/tabasics.py:1005 TurtleArt/tabasics.py:1024 +#: TurtleArt/tabasics.py:1018 TurtleArt/tabasics.py:1037 msgid "action 1" msgstr "ação 1" -#: TurtleArt/tabasics.py:479 +#: TurtleArt/tabasics.py:484 msgid "end fill" msgstr "terminar preenchimento" -#: TurtleArtActivity.py:649 TurtleArtActivity.py:803 turtleblocks.py:410 +#: TurtleArtActivity.py:687 TurtleArtActivity.py:845 turtleblocks.py:433 msgid "Copy" msgstr "Copiar" -#: TurtleArtActivity.py:651 TurtleArtActivity.py:804 turtleblocks.py:411 +#: TurtleArtActivity.py:689 TurtleArtActivity.py:846 turtleblocks.py:434 msgid "Paste" msgstr "Colar" -#: TurtleArt/talogo.py:512 +#: TurtleArt/talogo.py:513 msgid "did not output to" msgstr "não saiu para" @@ -2892,44 +2890,44 @@ msgstr "Atividades" msgid "Upload to Web" msgstr "Transferir para a Web" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:469 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:475 msgid "empty heap" msgstr "esvaziar pilha" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:487 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:493 msgid "pops value off FILO (first-in last-out heap)" msgstr "retira valor do FILO (pilha último a entrar, primeiro a sair)" -#: TurtleArtActivity.py:752 TurtleArtActivity.py:1035 turtleblocks.py:428 +#: TurtleArtActivity.py:794 TurtleArtActivity.py:1077 turtleblocks.py:451 msgid "Clean" msgstr "Limpar" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:767 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:805 msgid "Palette of presentation templates" msgstr "Palete de modelos de apresentação" -#: TurtleArt/tabasics.py:195 +#: TurtleArt/tabasics.py:197 msgid "angle" msgstr "ângulo" -#: TurtleArt/tabasics.py:658 +#: TurtleArt/tabasics.py:667 msgid "identity" msgstr "identidade" -#: TurtleArtActivity.py:641 TurtleArtActivity.py:748 TurtleArtActivity.py:777 -#: TurtleArtActivity.py:779 TurtleArtActivity.py:956 +#: TurtleArtActivity.py:679 TurtleArtActivity.py:790 TurtleArtActivity.py:819 +#: TurtleArtActivity.py:821 TurtleArtActivity.py:998 msgid "Save/Load" msgstr "Guardar/Carregar" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:933 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:971 msgid "top y" msgstr "y topo" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:143 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:145 msgid "audio" msgstr "áudio" -#: turtleblocks.py:425 +#: turtleblocks.py:448 msgid "Tools" msgstr "Ferramentas" @@ -2937,29 +2935,29 @@ msgstr "Ferramentas" msgid "Port" msgstr "Porta" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:521 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527 msgid "comment" msgstr "comentar" -#: TurtleArt/tabasics.py:622 +#: TurtleArt/tabasics.py:631 msgid "subtracts bottom numeric input from top numeric input" msgstr "subtrai a entrada numérica de baixo à entrada numérica em cima" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272 msgid "media pause" msgstr "pausar média" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365 msgid "query for keyboard input (results stored in keyboard block)" msgstr "" "consulta por entrada de teclado (resultados guardados no bloco teclado)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:654 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660 msgid "Cartesian" msgstr "Cartesiano" -#: TurtleArt/tabasics.py:159 +#: TurtleArt/tabasics.py:161 msgid "clears the screen and reset the turtle" msgstr "limpa o ecrã e coloca a tartaruga na posição inicial" @@ -2968,49 +2966,49 @@ msgstr "limpa o ecrã e coloca a tartaruga na posição inicial" msgid "raw microphone input signal" msgstr "sinal bruto da entrada do microfone" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:421 msgid "returns the color that the turtle \"sees\"" msgstr "devolve a cor que a tartaruga \"vê\"" -#: TurtleArt/tabasics.py:1027 +#: TurtleArt/tabasics.py:1040 msgid "invokes Action 1 stack" msgstr "invoca pilha Ação 1" -#: TurtleArt/tabasics.py:124 +#: TurtleArt/tabasics.py:126 msgid "Palette of turtle commands" msgstr "Palete de comandos da tartaruga" -#: TurtleArt/tabasics.py:804 +#: TurtleArt/tabasics.py:815 msgid "loops forever" msgstr "repete para sempre" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:200 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:202 msgid "show aligned" msgstr "mostrar alinhado" -#: TurtleArtActivity.py:1303 +#: TurtleArtActivity.py:1351 #, python-format msgid "Do you want to reinstall %s?" msgstr "Queres reinstalar %s?" -#: TurtleArtActivity.py:782 TurtleArtActivity.py:983 TurtleArtActivity.py:1005 -#: turtleblocks.py:381 +#: TurtleArtActivity.py:824 TurtleArtActivity.py:1025 +#: TurtleArtActivity.py:1047 turtleblocks.py:403 msgid "Load project" msgstr "Carregar projeto" -#: TurtleArtActivity.py:635 TurtleArtActivity.py:751 +#: TurtleArtActivity.py:673 TurtleArtActivity.py:793 msgid "Project" msgstr "Projeto" -#: turtleblocks.py:431 +#: turtleblocks.py:454 msgid "Debug" msgstr "Depurar" -#: TurtleArtActivity.py:318 TurtleArtActivity.py:681 TurtleArtActivity.py:832 +#: TurtleArtActivity.py:342 TurtleArtActivity.py:719 TurtleArtActivity.py:874 msgid "Turn off hover help" msgstr "Desligar ajuda flutuante" -#: TurtleArt/tabasics.py:668 TurtleArt/tabasics.py:669 +#: TurtleArt/tabasics.py:677 TurtleArt/tabasics.py:678 msgid "mod" msgstr "mod" @@ -3018,15 +3016,15 @@ msgstr "mod" msgid "Password" msgstr "Palavra-Passe" -#: TurtleArt/tabasics.py:865 +#: TurtleArt/tabasics.py:876 msgid "vertical space" msgstr "espaço vertical" -#: TurtleArtActivity.py:1284 +#: TurtleArtActivity.py:1332 msgid "Please restart Turtle Art in order to use the plugin." msgstr "Por favor reinicia o TartarugArte para utilizar este plugin." -#: TurtleArt/tabasics.py:481 +#: TurtleArt/tabasics.py:486 msgid "completes filled polygon (used with start fill block)" msgstr "" "completa o polígono preenchido (utilizado com o bloco iniciar preenchimento)" @@ -3035,72 +3033,72 @@ msgstr "" msgid "Share" msgstr "Partilhar" -#: TurtleArt/tabasics.py:728 +#: TurtleArt/tabasics.py:737 msgid "less than" msgstr "menor que" -#: TurtleArt/tabasics.py:681 +#: TurtleArt/tabasics.py:690 msgid "square root" msgstr "raiz quadrada" -#: turtleblocks.py:396 +#: turtleblocks.py:419 msgid "Rescale coordinates" msgstr "Repor a escala das coordenadas" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:821 msgid "show blocks" msgstr "mostrar blocos" -#: turtleblocks.py:388 +#: turtleblocks.py:410 msgid "Quit" msgstr "Sair" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:169 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:171 msgid "Sugar Journal description field" msgstr "Campo de descrição do Diário do Sugar" -#: TurtleArt/tabasics.py:371 +#: TurtleArt/tabasics.py:376 msgid "set gray" msgstr "definir cinza" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:806 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:844 msgid "presentation bulleted list" msgstr "lista de pontos de apresentação" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:297 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299 msgid "duration" msgstr "duração" -#: turtleblocks.py:375 +#: turtleblocks.py:397 msgid "New" msgstr "Novo" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:523 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 msgid "places a comment in your code" msgstr "coloca um comentário no teu código" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:408 msgid "read pixel" msgstr "ler pixel" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 msgid "scale" msgstr "escala" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:864 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902 msgid "bottom" msgstr "base" -#: TurtleArt/tabasics.py:518 +#: TurtleArt/tabasics.py:525 msgid "purple" msgstr "roxo" -#: TurtleArtActivity.py:509 +#: TurtleArtActivity.py:535 msgid "Rescale coordinates down" msgstr "Diminuir a escala das coordenadas" #: TurtleArt/tautils.py:593 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:712 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:748 msgid "click to open" msgstr "clica para abrir" @@ -3117,15 +3115,15 @@ msgstr "Configuração" msgid "Description:" msgstr "Descrição:" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:132 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:134 msgid "journal" msgstr "diário" -#: TurtleArt/tabasics.py:1049 +#: TurtleArt/tabasics.py:1064 msgid "empty trash" msgstr "esvaziar lixo" -#: TurtleArt/tabasics.py:434 +#: TurtleArt/tabasics.py:439 msgid "Turtle will draw when moved." msgstr "A tartaruga desenhará quando movida." @@ -3133,56 +3131,57 @@ msgstr "A tartaruga desenhará quando movida." msgid "Load..." msgstr "Carregar..." -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:145 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:147 msgid "Sugar Journal audio object" msgstr "Objeto de som do Diário do Sugar" -#: TurtleArt/talogo.py:374 TurtleArtActivity.py:755 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1437 +#: TurtleArt/talogo.py:374 TurtleArt/tawindow.py:1493 TurtleArtActivity.py:797 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1478 msgid "Stop turtle" msgstr "Parar tartaruga" -#: turtleblocks.py:433 +#: turtleblocks.py:456 msgid "Turtle" msgstr "Tartaruga" -#: TurtleArt/tapalette.py:98 +#: TurtleArt/tapalette.py:99 msgid "changes the orientation of the palette of blocks" msgstr "altera a orientação das paletes de blocos" -#: TurtleArt/tabasics.py:976 TurtleArt/tawindow.py:4581 +#: TurtleArt/tabasics.py:989 TurtleArt/tawindow.py:4676 msgid "store in" msgstr "guardar em" -#: TurtleArt/talogo.py:388 TurtleArtActivity.py:387 TurtleArtActivity.py:1041 +#: TurtleArt/talogo.py:388 TurtleArtActivity.py:413 TurtleArtActivity.py:1083 msgid "Hide blocks" msgstr "Esconder blocos" -#: TurtleArtActivity.py:786 TurtleArtActivity.py:991 TurtleArtActivity.py:1013 +#: TurtleArtActivity.py:828 TurtleArtActivity.py:1033 +#: TurtleArtActivity.py:1055 msgid "Load Python block" msgstr "Carregar bloco de Python" -#: TurtleArt/tabasics.py:607 +#: TurtleArt/tabasics.py:616 msgid "plus" msgstr "mais" -#: TurtleArt/tabasics.py:771 TurtleArt/tabasics.py:774 +#: TurtleArt/tabasics.py:780 TurtleArt/tabasics.py:783 msgid "or" msgstr "ou" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:814 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:852 msgid "presentation template: list of bullets" msgstr "modelo de apresentação: lista de pontos" -#: TurtleArt/tabasics.py:660 +#: TurtleArt/tabasics.py:669 msgid "identity operator used for extending blocks" msgstr "operador de identidade utilizado para extender blocos" -#: TurtleArtActivity.py:678 TurtleArtActivity.py:831 turtleblocks.py:400 +#: TurtleArtActivity.py:716 TurtleArtActivity.py:873 turtleblocks.py:423 msgid "Shrink blocks" msgstr "Diminuir tamanho dos blocos" -#: TurtleArt/tabasics.py:269 +#: TurtleArt/tabasics.py:271 msgid "" "holds current heading value of the turtle (can be used in place of a number " "block)" @@ -3190,57 +3189,57 @@ msgstr "" "contém o valor atual da orientação da tartaruga (pode ser usado em vez de um " "bloco de número)" -#: TurtleArt/tawindow.py:4362 +#: TurtleArt/tawindow.py:4457 msgid "image" msgstr "imagem" -#: TurtleArt/tabasics.py:695 +#: TurtleArt/tabasics.py:704 msgid "returns random number between minimum (top) and maximum (bottom) values" msgstr "" "devolve um número aleatório entre os valores mínimo (em cima) e máximo (em " "baixo)" -#: TurtleArt/tabasics.py:385 +#: TurtleArt/tabasics.py:390 msgid "holds current pen color (can be used in place of a number block)" msgstr "" "contém a cor atual da caneta (pode ser usado em vez de um bloco de número)" -#: TurtleArtActivity.py:335 turtleblocks.py:419 +#: TurtleArtActivity.py:361 turtleblocks.py:442 msgid "Show palette" msgstr "Mostrar palete" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:228 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:230 msgid "saves a picture to the Sugar Journal" msgstr "guarda uma imagem no Diário do Sugar" -#: TurtleArtActivity.py:273 TurtleArtActivity.py:715 TurtleArtActivity.py:757 -#: TurtleArtActivity.py:970 TurtleArtActivity.py:1003 +#: TurtleArtActivity.py:297 TurtleArtActivity.py:757 TurtleArtActivity.py:799 +#: TurtleArtActivity.py:1012 TurtleArtActivity.py:1045 msgid "Save snapshot" msgstr "Guardar revisão" -#: TurtleArt/tabasics.py:889 pysamples/grecord.py:214 +#: TurtleArt/tabasics.py:902 pysamples/grecord.py:214 msgid "start" msgstr "iniciar" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:501 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:511 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:507 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:517 msgid "returns True if heap is empty" msgstr "devolve Verdadeiro se a pilha estiver vazia" -#: TurtleArt/tabasics.py:133 +#: TurtleArt/tabasics.py:135 msgid "moves turtle forward" msgstr "move a tartaruga para a frente" -#: TurtleArt/tabasics.py:129 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 +#: TurtleArt/tabasics.py:131 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:770 msgid "forward" msgstr "avançar" -#: TurtleArt/tabasics.py:980 TurtleArt/tabasics.py:995 -#: TurtleArt/tawindow.py:1453 TurtleArt/tawindow.py:1585 -#: TurtleArt/tawindow.py:2182 TurtleArt/tawindow.py:4542 -#: TurtleArt/tawindow.py:4572 +#: TurtleArt/tabasics.py:993 TurtleArt/tabasics.py:1008 +#: TurtleArt/tawindow.py:1536 TurtleArt/tawindow.py:1669 +#: TurtleArt/tawindow.py:2267 TurtleArt/tawindow.py:4637 +#: TurtleArt/tawindow.py:4667 msgid "my box" msgstr "a minha caixa" @@ -3248,31 +3247,31 @@ msgstr "a minha caixa" msgid "Account ID" msgstr "Identificação de conta" -#: TurtleArt/tawindow.py:1467 +#: TurtleArt/tawindow.py:1550 msgid "Select blocks to share" msgstr "Selecionar blocos para partilhar" -#: TurtleArt/tabasics.py:142 +#: TurtleArt/tabasics.py:144 msgid "back" msgstr "recuar" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:217 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:219 msgid "sets the scale of media" msgstr "ajusta a escala do média" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:250 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252 msgid "holds current scale value" msgstr "contém o valor atual da escala" -#: TurtleArt/tabasics.py:911 +#: TurtleArt/tabasics.py:924 msgid "top of nameable action stack" msgstr "topo da pilha de ação com nome" -#: TurtleArt/tabasics.py:981 TurtleArt/tawindow.py:4586 +#: TurtleArt/tabasics.py:994 TurtleArt/tawindow.py:4681 msgid "stores numeric value in named variable" msgstr "guarda valor numérico em variável com nome" -#: TurtleArt/tabasics.py:775 +#: TurtleArt/tabasics.py:784 msgid "logical OR operator" msgstr "operador lógico ou (OR)" @@ -3283,7 +3282,7 @@ msgstr "operador lógico ou (OR)" msgid "microphone input voltage" msgstr "voltagem da entrada do microfone" -#: TurtleArt/tabasics.py:816 +#: TurtleArt/tabasics.py:827 msgid "loops specified number of times" msgstr "repete determinado número de vezes" @@ -3291,57 +3290,58 @@ msgstr "repete determinado número de vezes" msgid "Save..." msgstr "Guardar..." -#: TurtleArt/tabasics.py:1037 +#: TurtleArt/tabasics.py:1050 msgid "invokes Action 2 stack" msgstr "invoca pilha Ação 2" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:746 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:782 msgid "setxy" msgstr "definir xy" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:953 msgid "title y" msgstr "y título" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:906 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:944 msgid "title x" msgstr "x título" -#: TurtleArt/tabasics.py:313 TurtleArt/tabasics.py:326 +#: TurtleArt/tabasics.py:318 TurtleArt/tabasics.py:331 msgid "fill screen" msgstr "preencher ecrã" -#: turtleblocks.py:383 +#: turtleblocks.py:405 msgid "Save as" msgstr "Guardar como" -#: TurtleArt/tabasics.py:210 TurtleArt/tabasics.py:288 +#: TurtleArt/tabasics.py:212 TurtleArt/tabasics.py:291 msgid "set xy" msgstr "definir xy" -#: TurtleArt/tabasics.py:1045 +#: TurtleArt/tabasics.py:1056 TurtleArt/tabasics.py:1060 +#: TurtleArt/tapalette.py:138 TurtleArt/tapalette.py:139 msgid "trash" msgstr "lixo" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:668 msgid "polar" msgstr "Polar" -#: TurtleArt/tabasics.py:811 TurtleArt/tabasics.py:815 +#: TurtleArt/tabasics.py:822 TurtleArt/tabasics.py:826 msgid "repeat" msgstr "repetir" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 msgid "wait for current video or audio to complete" msgstr "espera que o vídeo ou áudio atual acabe" -#: TurtleArtActivity.py:257 TurtleArtActivity.py:780 TurtleArtActivity.py:961 -#: TurtleArtActivity.py:997 turtleblocks.py:384 +#: TurtleArtActivity.py:281 TurtleArtActivity.py:822 TurtleArtActivity.py:1003 +#: TurtleArtActivity.py:1039 turtleblocks.py:406 msgid "Save as image" msgstr "Guardar como imagem" -#: TurtleArtActivity.py:603 TurtleArtActivity.py:639 TurtleArtActivity.py:749 -#: TurtleArtActivity.py:802 turtleblocks.py:416 +#: TurtleArtActivity.py:642 TurtleArtActivity.py:677 TurtleArtActivity.py:791 +#: TurtleArtActivity.py:844 turtleblocks.py:439 msgid "Edit" msgstr "Editar" @@ -3352,40 +3352,40 @@ msgstr "Editar" msgid "microphone input resistance" msgstr "resistência da entrada do microfone" -#: TurtleArt/tabasics.py:1017 +#: TurtleArt/tabasics.py:1030 msgid "top of Action 2 stack" msgstr "topo da pilha Ação 2" -#: TurtleArt/tabasics.py:648 +#: TurtleArt/tabasics.py:657 msgid "" "divides top numeric input (numerator) by bottom numeric input (denominator)" msgstr "" "divide a entrada numérica em cima (numerador) pela entrada numérica de baixo " "(denominador)" -#: TurtleArt/tabasics.py:691 +#: TurtleArt/tabasics.py:700 msgid "max" msgstr "máx" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:534 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540 msgid "prints value in status block at bottom of the screen" msgstr "imprime valor no bloco de estado na base do ecrã" -#: TurtleArt/tabasics.py:468 +#: TurtleArt/tabasics.py:473 msgid "start fill" msgstr "iniciar preenchimento" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:372 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376 msgid "holds results of query-keyboard block as ASCII" msgstr "contém resultados do bloco consultar-teclado em ASCII" #. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: push adds a new item to the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:443 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:449 msgid "push" msgstr "inserir" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:599 msgid "" "a programmable block: used to add advanced multi-variable math equations, e." "g., sin(x+y+z)" @@ -3393,11 +3393,11 @@ msgstr "" "um bloco programável: utilizado para adicionar equações matemáticas " "avançadas de múltiplas variáveis, por ex., sin(x+y+z)" -#: TurtleArt/tabasics.py:1054 +#: TurtleArt/tabasics.py:1069 msgid "restore all" msgstr "restaurar tudo" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:287 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:289 msgid "hello" msgstr "olá" @@ -3414,45 +3414,70 @@ msgstr "" "Uma tartaruga inspirada em Logo que desenha pinturas coloridas com blocos de " "programação visual" -#: TurtleArt/tabasics.py:443 +#: TurtleArt/tabasics.py:309 +msgid "pen" +msgstr "caneta" + +#: TurtleArt/tabasics.py:448 msgid "pen down?" msgstr "caneta embaixo?" -#: TurtleArt/tabasics.py:445 +#: TurtleArt/tabasics.py:450 msgid "returns True if pen is down" msgstr "devolve Verdadeiro se a caneta estiver embaixo" -#: TurtleArt/tawindow.py:1414 -msgid "" -"Please hit the Stop Button before making changes to your Turtle Blocks " -"program" +#: TurtleArt/tabasics.py:511 +msgid "colors" +msgstr "cores" + +#: TurtleArt/tabasics.py:606 +msgid "numbers" +msgstr "números" + +#: TurtleArt/tabasics.py:791 +msgid "flow" +msgstr "fluxo" + +#: TurtleArt/tabasics.py:893 +msgid "blocks" +msgstr "blocos" + +#: TurtleArt/tawindow.py:1497 +msgid "Please hit the Stop Button before making changes to your program" msgstr "" -"Por favor, carrega no botão Parar antes de fazeres mudanças ao teu programa " -"BlocosTartaruga" +"Por favor, carrega no botão Parar antes de fazeres mudanças ao teu programa" -#: TurtleArt/tawindow.py:1630 TurtleArtActivity.py:656 -#: TurtleArtActivity.py:805 turtleblocks.py:412 +#: TurtleArt/tawindow.py:1714 TurtleArtActivity.py:694 +#: TurtleArtActivity.py:847 turtleblocks.py:435 msgid "Save stack" msgstr "Guardar pilha" -#: TurtleArt/tawindow.py:1631 TurtleArt/tawindow.py:1645 +#: TurtleArt/tawindow.py:1715 TurtleArt/tawindow.py:1729 msgid "Really overwrite stack?" msgstr "Desejas sobrescrever a pilha?" -#: TurtleArt/tawindow.py:1638 TurtleArt/tawindow.py:1648 +#: TurtleArt/tawindow.py:1722 TurtleArt/tawindow.py:1732 msgid "Overwrite stack" msgstr "Sobrescrever pilha" -#: TurtleArt/tawindow.py:1669 TurtleArt/tawindow.py:1677 -#: TurtleArt/tawindow.py:1686 TurtleArtActivity.py:658 turtleblocks.py:414 +#: TurtleArt/tawindow.py:1753 TurtleArt/tawindow.py:1761 +#: TurtleArt/tawindow.py:1770 TurtleArtActivity.py:696 turtleblocks.py:437 msgid "Delete stack" msgstr "Apagar pilha" -#: TurtleArt/tawindow.py:1670 TurtleArt/tawindow.py:1683 +#: TurtleArt/tawindow.py:1754 TurtleArt/tawindow.py:1767 msgid "Really delete stack?" msgstr "Desejas apagar a pilha?" -#: TurtleArtActivity.py:933 +#: TurtleArtActivity.py:127 +msgid "Please wait" +msgstr "Por favor espera" + +#: TurtleArtActivity.py:128 +msgid "Starting connection..." +msgstr "A iniciar ligação..." + +#: TurtleArtActivity.py:975 msgid "Palettes" msgstr "Paletes" @@ -3460,20 +3485,64 @@ msgstr "Paletes" msgid "Facebook wall post" msgstr "Colocar no Mural de Facebook" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:297 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:123 +msgid "media" +msgstr "média" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299 msgid "amplitude" msgstr "amplitude" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:438 +msgid "extras" +msgstr "extras" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:688 +msgid "turtle x" +msgstr "tartaruga x" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:691 +msgid "Returns x coordinate of turtle" +msgstr "Devolve a coordenada x da tartaruga" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:698 +msgid "turtle y" +msgstr "tartaruga y" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701 +msgid "Returns y coordinate of turtle" +msgstr "Devolve a coordenada y da tartaruga" + #. TRANS: pop removes a new item from the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:709 msgid "active turtle" msgstr "tartaruga ativa" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:712 msgid "the name of the active turtle" msgstr "o nome da tartaruga ativa" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:968 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:720 +msgid "turtle heading" +msgstr "direção tartaruga" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 +msgid "Returns heading of turtle" +msgstr "Devolve a direção da tartaruga" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:792 +msgid "select palette" +msgstr "selecionar palete" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:801 +msgid "portfolio" +msgstr "portefólio" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1002 +msgid "my blocks" +msgstr "os meus blocos" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1007 msgid "Palette of user-defined operators" msgstr "Palete de operadores definidos pelo utilizador" @@ -3514,15 +3583,15 @@ msgstr "outros" msgid "turns the turtle 180 degrees" msgstr "roda a tartaruga 180 graus" -#: turtleblocks.py:376 +#: turtleblocks.py:398 msgid "Show sample projects" msgstr "Mostrar projetos de exemplo" -#: turtleblocks.py:378 +#: turtleblocks.py:400 msgid "Hide sample projects" msgstr "Esconder projetos de exemplo" -#: turtleblocks.py:436 +#: turtleblocks.py:459 msgid "About..." msgstr "Sobre..." @@ -3593,6 +3662,9 @@ msgstr "Sobre..." #~ msgid "sets color of text drawn by the turtle" #~ msgstr "define a cor do texto desenhado pela tartaruga" +#~ msgid "palette" +#~ msgstr "palete" + #~ msgid "presentation 2x2" #~ msgstr "apresentação 2x2" @@ -3881,24 +3953,12 @@ msgstr "Sobre..." #~ msgid "stack" #~ msgstr "pilha" -#, fuzzy -#~ msgid "numbers" -#~ msgstr "número" - -#, fuzzy -#~ msgid "blocks" -#~ msgstr "Blocos" - #~ msgid "holds current text color (can be used in place of a number block)" #~ msgstr "" #~ "guarda o tamanho actual da cor do texto (pode ser usado em lugar de um " #~ "bloco de número)" #, fuzzy -#~ msgid "flow" -#~ msgstr "Fluxo" - -#, fuzzy #~ msgid "Load my block" #~ msgstr "carregar o meu bloco" @@ -3927,9 +3987,6 @@ msgstr "Sobre..." #~ msgid "Keyboard" #~ msgstr "Teclado" -#~ msgid "My Blocks" -#~ msgstr "Os meus blocos" - #~ msgid "Numbers" #~ msgstr "Números" -- cgit v0.9.1